initial tictactoe

This commit is contained in:
2026-02-05 10:51:59 -05:00
commit d7dbb0b053
74 changed files with 1633 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
Tic-Tac-Toe is a two-player game played on a 3X3 grid
where players alternate placing 'X' or 'O' in an empty
space in the grid. The first player to lineup three marks
in a row, column, or diagonal wins. X goes first,
players alternate turns, and only one player can have
a winning line (or no one). If a player has won, the game
ends immediately, and no more moves can be made.
considering players
3x3 = 9
X has 5 moves.
O has 4 moves.