Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
d1mavares authored Jun 27, 2024
1 parent 2a0b85e commit ebc362f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# tictactoe
ai50 course project for tictactoe (week 0, project 1)

Using Minimax, implement an AI to play Tic-Tac-Toe optimally.
# TicTacToe
Using Minimax, implement an AI to play Tic-Tac-Toe optimally. AI50 course project for tictactoe (week 0, project 1)

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.You should be able to run python runner.py to play against your AI!
We’ve chosen to represent the board as a list of three lists (representing the three rows of the board), where each internal list contains three values that are either X, O, or EMPTY.
Expand Down

0 comments on commit ebc362f

Please sign in to comment.