For the game of Tic Tac Toe we will be storing the state of the game in a matrix M.
For this game:
We would store the state as this:
-1 1 1
1 -1 -1
1 -1 -1
If there were any blanks squares, they would be 0;
For this challenge, given a game state, does X (1) have a three in a row on any row, column or major diagonal?

Solution Stats

1798 Solutions

536 Solvers

Last Solution submitted on Jul 17, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...