This is a Tic-Tac-Toe game implementation using the Minimax algorithm for AI decision-making.
The Minimax algorithm allows the computer to play optimally, guaranteeing a win or a draw against any opponent.
- Play against the computer using the Minimax AI.
- Clear visual representation of the game board.
- Programming language with libraries for handling 2D grids and user input (e.g., Python with CustomTkinter)
- Install the Requirements
pip install requirements.txt
- Run the game script.
- Take turns marking empty spaces on the board by clicking the corresponding cell.
- The computer will make its move based on the Minimax algorithm.
- The game continues until there is a winner or a draw.