This commit is contained in:
Diego Moura 2024-01-15 07:01:07 -08:00 committed by GitHub
commit 8924e2c974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,10 +4,10 @@
// 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, goals
// the team scored, and goals the team conceded over the entire list of matches.
// 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!
//