This is a from-scratch implementation of a simple checkers game using pygame.
It is a simple self-made project with which I want to learn more about classic AI algorithms.
- The repository allow two human players to play checkers against each other.
- I will soon implement an AI version where a player can play against an AI using the minimax algorithm.
Feel free to contribute to this project with ideas or improvements.
The idea of building this repository came from the first lecture "Search" from Harvard CS50's introduction to AI with Python, available here.
I then decided on implementing the ideas showcased there on checkers. For building the checkers game, I drew inspiration from this repository.