TicTacToe AI is, as the name indicates, an AI that can play TicTacToe.
It comes with a built-in GUI where you can
play against it. To make the game there is also an MNK approach build inside the Board representation
Unlike other TicTacToe algorithm that uses a simple minimax algorithm, this project uses a Negamax algorithm with a PV-Search.
There are also Unit test included to verify that the board and search work, probably.