From 6e5b7533c2550eb946c25e2835269f584f877a53 Mon Sep 17 00:00:00 2001 From: Samriddhi620 <73621618+Samriddhi620@users.noreply.github.com> Date: Sat, 23 Oct 2021 17:41:52 -0700 Subject: [PATCH] Tic Tac Toe Game --- Projects/1-Beginner/Tic Tac Toe Game | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Projects/1-Beginner/Tic Tac Toe Game diff --git a/Projects/1-Beginner/Tic Tac Toe Game b/Projects/1-Beginner/Tic Tac Toe Game new file mode 100644 index 00000000..aa8016e5 --- /dev/null +++ b/Projects/1-Beginner/Tic Tac Toe Game @@ -0,0 +1,24 @@ +#Tic Tac Toe Game + +**Tier:** 1-Beginner +Tic Tac Toe Game with 3 x 3 board + +## User Stories +- [ ] User should start by clicking on new game button to start the game and enable all the buttons on the game. +- [ ] The two players should be allotted there symbols say, ‘O’ and ‘X’ +- [ ] Now, the user can start the game with 2 players by clicking on the desired position on the 3x3 board. +- [ ] Once we find that one of them wins or a tie then disable all the buttons +- [ ] Each time display on the top Player turn, New Game and who ever wins. + +## Bonus features +- [ ] Player can give their names to get displayed in place of Player-1 and Player-2 +- [ ] Useful links and resources +- [ ] TicTacToe + +## Useful links and resources + +[TicTacToe](https://en.wikipedia.org/wiki/Tic-tac-toe) + +Example projects + +[Game](https://playtictactoe.org/)