Connect4
The game can be played in the following manner:
- player vs player
- player vs bot
- bot vs bot
The game currently has 5 bots
- Random Int Bot (
random
) - One-Step Look Ahead Bot (
onestep
) - MiniMax Bot (
minimax
) - ExpectiMax Bot (
expectimax
) - Monte-Carlo Tree Search (
montecarlo
)
Check README.md file for details