Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 360 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 360 Bytes

TicTacToe

This program implements the game of TicTacToe and a basic AI agent to play against. The agent uses the negamax search algorithm to determine the best move. This agent is a basic implementation that does not save state between searches or check for duplicate nodes in the search tree; it searches the entire tree to the leaf nodes naiively.