Merge pull request #1 from evanmiller2112/evanmiller2112-hashmap3-description

Update hashmaps3.rs description for clarity
pull/1869/head
Evan Miller 3 months ago committed by GitHub
commit 9bda8598e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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!
//

Loading…
Cancel
Save