This is a simple Tic-Tac-Toe game built using Python and Pygame. The game allows the player to choose to play as X or O and has a simple AI that plays as the other player. It uses the minimax algorithm to calculate optimal moves and has been enhanced with alpha beta pruning.
This is a simple Tic-Tac-Toe game built using
Python
andPygame
. The game allows the player to choose to play as X or O and has a simple AI that plays as the other player. It uses theminimax
algorithm to calculate optimal moves and has been enhanced withalpha beta pruning
.