Completed the tasks for checkpoint 3

What I changed
Answered the questions and gave the computer a better strategy.

Why I changed it
I answered the questions to the best of my abilitiy. I gave the computer a better strategy as instructed.

Estimate for remaining time to finish assignment: 30 minutes
This commit is contained in:
root
2024-02-14 23:44:21 -05:00
parent ca1c558686
commit f5b1b03b9a
3 changed files with 10 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ from ttt.view import TTTView
from ttt.player import TTTHumanPlayer, TTTComputerPlayer
player0 = TTTHumanPlayer("Player 1")
player1 = TTTHumanPlayer("Player 2")
player1 = TTTComputerPlayer("Robot")
game = TTTGame()
view = TTTView(player0, player1)