generated from mwc/lab_tic_tac_toe
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:
parent
a54f9cc24e
commit
67a041b903
9
notes.md
9
notes.md
|
@ -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
|
||||
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
|
||||
# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand.
|
||||
|
||||
[[package]]
|
||||
name = "click"
|
||||
version = "8.1.3"
|
||||
version = "8.1.7"
|
||||
description = "Composable command line interface toolkit"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
files = [
|
||||
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
|
||||
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
||||
{file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"},
|
||||
{file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
|
@ -19,7 +18,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|||
name = "colorama"
|
||||
version = "0.4.6"
|
||||
description = "Cross-platform colored terminal text."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
||||
files = [
|
||||
|
|
Loading…
Reference in New Issue