Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 649 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 649 Bytes

Tic Tac Toe

Check live demo

Game Introduction

Tic-tac-toe (also known as noughts and crosses or Xs and Os) is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game. from Wikipedia.

User Stories

  • Implement the game logic.
  • I can play a game of Tic Tac Toe with the computer.
  • My game will reset as soon as it's over so I can play again.
  • I can choose whether I want to play as X or O.