No description
  • C 83.7%
  • Makefile 8.3%
  • Nix 8%
Find a file
Julia bd88ce79df add README.md
Explanation of the intention of this repository
2026-08-25 11:10:21 -07:00
inc Refactor file structure, and make file 2024-07-16 02:48:19 -07:00
src Refactor file structure, and make file 2024-07-16 02:48:19 -07:00
tests Refactor file structure, and make file 2024-07-16 02:48:19 -07:00
.gitignore Refactor file structure, and make file 2024-07-16 02:48:19 -07:00
flake.lock Add Horizontal and Vertical win checking 2024-07-16 01:43:16 -07:00
flake.nix Add Horizontal and Vertical win checking 2024-07-16 01:43:16 -07:00
LICENSE Add License (MPL2.0) 2024-07-16 02:03:43 -07:00
Makefile Refactor file structure, and make file 2024-07-16 02:48:19 -07:00
README.md add README.md 2026-08-25 11:10:21 -07:00

Connect 4

This repo is an exercise for me to work out my C muscles, and eventually my multithreading muscles.

The goal of this repo is to create a connect 4 computer opponent with strong multithreading.

I chose this because a connect4 computer opponent is complicated enough to be fun to implement and because the connect 4 board creates fun multithreading problems and solutions.