Ready to have some fun?!
Tic-Tac-Toe
Care to try your hand at the classic game? You can play solo vs the computer or against an opponent taking turns clicking on the board. Good luck!
The AI here is a N-ply lookahead algorithm, which is set to 9-ply (the maximum) but can be changed. Also note that changes can only be made after or before a game is played.
Connect 4
Again, you can play solo vs the computer or against an opponent taking turns clicking on the board. Good luck!
Quite similar to Tic-Tac-Toe, the AI here is a N-ply lookahead algorithm, which is set to 6-ply (any higher causes a delay because we get to the order of millions of recursive calls) but can be lowered. Also note that changes can only be made after or before a game is played.