Test out different AI implementations in a simple game of noughts and crosses.
Player VS MinimaxAI
An AI that uses a minimax function to figure out it's moves, due to the way this algorithm works, it is un-beatable.
Player VS BogoAI
This AI is a joke based off of a sorting algorithm called bogo-sort. It randomly chooses a location on the board to place.
Player VS CombinationAI
This AI is a combination of the minimax and bogo AI's, it randomly selects which bot decides each move based on the slider below. This allows for the AI to both not be unbeatable and also not suck at the game.