Files

31 lines
893 B
Plaintext
Raw Permalink Normal View History

2026-02-05 10:51:59 -05:00
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.
2026-02-07 19:49:40 -05:00
2026-02-09 17:38:20 -05:00
Project is build as gradle root and child projects.
2026-05-02 13:09:49 -04:00
Gradle handles build and run of program using Java runtime.
2026-02-09 17:38:20 -05:00
Build Environment:
2026-05-02 13:09:49 -04:00
JDK26,
2026-02-11 14:20:58 -05:00
VSCode with Edwin's Pack: Java
Or Eclipse 4.38 with Gradle Buildship
2026-02-09 17:38:20 -05:00
In Eclipse import project as an Gradle Project.
2026-05-02 13:09:49 -04:00
Tests :
2026-02-09 17:38:20 -05:00
on windows:
2026-02-11 14:20:58 -05:00
./gradlew.bat edu.tictactoe:run
2026-02-09 17:38:20 -05:00
/ or on linux:
2026-02-11 14:20:58 -05:00
sh ./gradlew edu.tictactoe:run
2026-05-02 13:09:49 -04:00
Referee component will call the Game plays.