Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 4 Tic-tac-toe (also known as noughts and crosses) is a game for two players, X and O, who take turns marking the spaces
Question 4 Tic-tac-toe (also known as noughts and crosses) is a game for two players, X and O, who take turns marking the spaces in a 3x3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game. The game ends in a draw if neither player is able to achieve a winning row after all spaces in the grid have been filled. The following example game, as illustrated in Wikipedia, is won by the first player, X: 96 TX qX X X X X # ax OLX Figure 2: Tic-tac-toe a) Provide the complete source code for a Tic-tac-toe game which allows two players to play on against each other. 10 hea Int pt *pt The game must be played in the console. You need to allow each player to take their turn by having them input the position at which they will make their mark, and you must display the updated game grid after each turn. Output a message when the game is over indicating who won, or if the game was a draw. Your solution must be object-oriented and you should separate the presentation layer from the game logic. b) Provide a set of unit tests which verify that your solution works correctly. (20 marks) (18 marks) [Total Marks 38]
Step by Step Solution
★★★★★
3.48 Rating (155 Votes )
There are 3 Steps involved in it
Step: 1
Question 4a python class Player def initself mark selfmark mark def mak...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started