Skip to content

Commit 9bda859

Browse files
Merge pull request #1 from evanmiller2112/evanmiller2112-hashmap3-description
Update hashmaps3.rs description for clarity
2 parents 8d0aa11 + 19b5e24 commit 9bda859

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

exercises/11_hashmaps/hashmaps3.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
// the form : "<team_1_name>,<team_2_name>,<team_1_goals>,<team_2_goals>"
55
// Example: England,France,4,2 (England scored 4 goals, France 2).
66
//
7-
// You have to build a scores table containing the name of the team, goals the
8-
// team scored, and goals the team conceded. One approach to build the scores
9-
// table is to use a Hashmap. The solution is partially written to use a
10-
// Hashmap, complete it to pass the test.
7+
// You have to build a scores table containing the name of the team, the total
8+
// number of goals the team scored, and the total number of goals the team
9+
// conceded. One approach to build the scores table is to use a Hashmap.
10+
// The solution is partially written to use a Hashmap,
11+
// complete it to pass the test.
1112
//
1213
// Make me pass the tests!
1314
//

0 commit comments

Comments
 (0)