1.1 KiB
1.1 KiB
Hints
1. Create a new high score board
- The
dict.newanddict.from_listfunctions can be used to create a new dict.
2. Add players to a score board
- The
dict.insertfunction can be used to add a new key-value pair to a dict.
3. Remove players from a score board
- The
dict.deletefunction can be used to remove a key-value pair from a dict.
4. Increase a player's score
- The
dict.getfunction can be used to get the value for a key in a dict. - The
dict.insertfunction can be used to overwrite an existing key-value pair in a dict.
5. Apply Monday bonus points
- The
dict.map_valuesfunction can be used to modify all the values in a dict.