Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Latest commit

 

History

History

Tic Tac Toe

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

🧩 Tic Tac Toe Project

Objective: Using Minimax, implement an AI to play Tic-Tac-Toe optimally.

📺 Demonstration

Tic Tac Toe Demonstration

🧐 Understanding

There are two main files in this project: runner.py and tictactoe.py. tictactoe.py contains all of the logic for playing the game, and for making optimal moves. runner.py has been implemented for you, and contains all of the code to run the graphical interface for the game. Once you've downloaded the code and its dependencies, you should be able to run python runner.py to play against the AI!