Tic-tac-toe is a strategy game in which two players take turns in drawing either an O' or an
X' in one square of a grid consisting of nine squares.
💠 The game is to be played between two people (in this program between HUMAN and COMPUTER).
💠 One of the player chooses ‘O’ and the other ‘X’ to mark their respective cells.
💠 The game starts with one of the players and the game ends when one of the players has one whole row/ column/ diagonal filled with his/her respective character (‘O’ or ‘X’).
💠 If no one wins, then the game is said to be draw.
Made by Disha Gupta (https://github.com/Dishag2611)