Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 660 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 660 Bytes

Tik Tak Toe

Rules

Tik Tak Toe is a two player game. Players take turns marking the spaces in a 3x3 grid. One player is "X" and the other player is "O". The first player to place three marks in a row (veritcally, horizontally, or diagonally) is the winner. If no player has won after all nine squares are marked, the game is a tie.

Player X wins

X X X
. 0 .
0 . .

Player O wins

0 X X
X 0 .
X 0 0

Tie Game

0 X X
X 0 0
X 0 0

Running the app

npm start - Runs the app in the development mode. Open http://localhost:3000 to view it in your browser. The page will reload when you make changes.