diff options
| author | liv <mokou@fastmail.com> | 2024-03-15 14:36:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 14:36:23 +0100 |
| commit | 76acf613c5481bf7bb44d290b7fb340e71e9faad (patch) | |
| tree | 534cbad29caa892d4026ec593491d05cde541e15 /exercises/11_hashmaps/hashmaps3.rs | |
| parent | bcb192c707009ab9d9bb06812cb09b9d446ccc11 (diff) | |
| parent | 2966a29449e17eace182c225b3af23fa43af3799 (diff) | |
Merge branch 'main' into main
Diffstat (limited to 'exercises/11_hashmaps/hashmaps3.rs')
| -rw-r--r-- | exercises/11_hashmaps/hashmaps3.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/exercises/11_hashmaps/hashmaps3.rs b/exercises/11_hashmaps/hashmaps3.rs index 36544ee..8d9236d 100644 --- a/exercises/11_hashmaps/hashmaps3.rs +++ b/exercises/11_hashmaps/hashmaps3.rs @@ -4,10 +4,11 @@ // the form : "<team_1_name>,<team_2_name>,<team_1_goals>,<team_2_goals>" // Example: England,France,4,2 (England scored 4 goals, France 2). // -// You have to build a scores table containing the name of the team, goals the -// team scored, and goals the team conceded. One approach to build the scores -// table is to use a Hashmap. The solution is partially written to use a -// Hashmap, complete it to pass the test. +// You have to build a scores table containing the name of the team, the total +// number of goals the team scored, and the total number of goals the team +// conceded. One approach to build the scores table is to use a Hashmap. +// The solution is partially written to use a Hashmap, +// complete it to pass the test. // // Make me pass the tests! // |
