You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
849 B
24 lines
849 B
3 years ago
|
# Hints
|
||
|
|
||
|
## General
|
||
|
|
||
|
- Don't worry about how the arguments are _derived_, focus on combining the arguments to return the intended result.
|
||
|
|
||
|
## 1. Define if Pac-Man can eat a ghost
|
||
|
|
||
|
- You can use the [Boolean][boolean] [operators][Boolean-operators] to combine arguments for a result.
|
||
|
|
||
|
## 2. Define if Pac-Man scores
|
||
|
|
||
|
- You can use the [Boolean][boolean] [operator][Boolean-operators] to combine arguments for a result.
|
||
|
|
||
|
## 3. Define if Pac-Man loses
|
||
|
|
||
|
- You can use the [boolean][Boolean] [operator][Boolean-operators] to combine arguments for a result.
|
||
|
|
||
|
## 4. Define if Pac-Man wins
|
||
|
|
||
|
- You can use the [Boolean][boolean] [operator][Boolean-operators] to combine arguments for a result.
|
||
|
|
||
|
[boolean]: https://docs.python.org/3/library/stdtypes.html#truth
|
||
|
[Boolean-operators]: https://docs.python.org/3/library/stdtypes.html#boolean-operations-and-or-not
|