The game takes place on an 8 x 8 game board with 64 cells. Each cell can hold a disc.
We have two kinds of disc:
Players place their discs alternatively on the game board, one using the red disc and the other using blue.
The final goal is to form as many squares (preferably large) as possible using your own discs.
Points are calculated by the formula:
where #Col is the total number of columns (or rows) that the square covers.
Example: A square covering 4 columns scores 16 points. A square covering 8 columns scores 64 points.
The total points (or score) of a player is the sum of points obtained from all the squares.
A game ends when either:
When the game ends, the player with higher points wins the game.
The game is a draw if both players have the same points when the game board is fully occupied.
⚠️ In each turn, a player must place a disc.