Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 1.81 KB

README.md

File metadata and controls

20 lines (11 loc) · 1.81 KB

Checkers game

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.

Features

  • 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.

Contribution

Feel free to contribute to this project with ideas or improvements.

Inspiration

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.