Files
Alexander Heldt 84098e7db9 high-score-board
2025-11-08 15:30:12 +01:00

1.1 KiB

Hints

1. Create a new high score board

2. Add players to a score board

  • The dict.insert function can be used to add a new key-value pair to a dict.

3. Remove players from a score board

  • The dict.delete function can be used to remove a key-value pair from a dict.

4. Increase a player's score

  • The dict.get function can be used to get the value for a key in a dict.
  • The dict.insert function can be used to overwrite an existing key-value pair in a dict.

5. Apply Monday bonus points

  • The dict.map_values function can be used to modify all the values in a dict.