Minimax Tic Tac Toe
- February 5, 2024
- Dino Nuggie Studios
This is just a simple Tic Tac Toe algorithm I programmed using python. Here are the basic rules of Tic Tac Toe: Objective: The objective of Tic Tac Toe is to be the first player to form a horizontal, vertical, or diagonal line of three of your marks ("X" or "O") on the grid. Setup: The game begins with an empty 3x3 grid. Players: Tic Tac Toe is a two-player game. One player is assigned "X" and t…