Answered the questions for Checkpoint 1

What I changed
I wrote an answer in notes.md for each of the questions in checkpoint 1.

Why I changed it
n/a

Estimate for remaining time to finish assignment: [REPLACE WITH TIME ESTIMATE]
I'm not positive. Maybe 1 to 3 hours.
This commit is contained in:
Thomas Naber
2024-02-25 19:35:23 -05:00
parent a54f9cc24e
commit 67a041b903
2 changed files with 9 additions and 10 deletions

View File

@@ -6,13 +6,14 @@ Which class is responsible for each of the following behaviors?
For each, explain how the behavior is accomplished.
### Checking to see whether the game is over
The game class checks if the game is over using the is_over method.
### Determining which actions are available at a particular state
The game class also does this through the get_actions method
### Showing the board
The view class does this through the print_board method
### Choosing which action to play on a turn
The player class contains the choose_action method which allows the player
to choose whicn place to play.
## Checkpoint 2 Notes