Tic Tac Toe is a game where two players, each with a mark X or O compete to see who will be first to get three of their marks in a row. Marks can be placed vertically, horizontally or diagonally.
Player X always goes first then the players take alternate moves and play until the game has been won or there is tie.
There is one game mode: human vs human.
Currently the program and tests are run in IntelliJ.
Download the repository by clicking the green button above and selecting 'Download ZIP'. Navigate to the repository and use cd followed by the repository name to enter it.
Alternatively, clone the repository by clicking the green button above and copying the URL. Go to your terminal, navigate to where you want the Tic Tac Toe repository to be. Enter the following command:
git clone git@github.com:Katerina-codes/tic_tac_toe_java.git
Import the project to IntelliJ - you may need to import JUnit4 to run the tests.