A simple terminal-based Tic Tac Toe game written in Python.
- Player vs Player mode
- AI opponents with Easy, Medium, and Hard difficulties
- Clean terminal UI with colored board display
- Minimax-based AI for optimal play
- Python 3.x
python src/game.py- Choose a mode from the menu
- Enter numbers 1–9 to place your move
- Play again when prompted
src/game.py– main game loop and menusrc/utils.py– board display, win checking, and AI logicdocs/– internal documentation