ASAddWeb Solutioninaddwebsolution.hashnode.devCreating an Unbeatable Tic Tac Toe Game Using Minimax Algorithm with Alpha-Beta Pruning in Flutter DevelopmentTic Tac Toe is a simple game, but making an unbeatable AI requires an intelligent algorithm. One such solution is the Minimax Algorithm combined with Alpha-Beta Pruning, which reduces the number of possibilities the AI needs to evaluate. In this arti...Oct 24, 2024·5 min read
DMDipesh Murmuindipeshmurmu.hashnode.devTic Tac Toe Game Using Simple JS LogicTic Tac Toe It is quite easy to develop with some simple validations and error checks. Player-1 starts playing the game and both the players make their moves in consecutive turns. The player who makes a straight 3-block chain wins the game. This game...Oct 21, 2022·2 min read