This repo implements a tic tac toe ai player using Monte Carlo Tree Search algorithm, against which we can play..
Unlike minimax algorithm, which needs to create a complete game tree from a game state to take the optimal decision, MCTS just expands the better parts
of the tree based on a certain number of simulations(the more the better).MCTS is much more computationally efficient than the minimax algorithm(even with
In this case, with just 90 simulations per move(it can be reduced further, towards the later stages of the game as there will be less choices to evaluate), the ai is playing very good and I haven't won against it. You are encouraged to try against it...