From 1a81f21756adeaf56cea5a1aab52cf054ea06a5a Mon Sep 17 00:00:00 2001 From: Diego Moura Date: Thu, 30 Nov 2023 18:39:43 -0500 Subject: [PATCH] update instructions to mention summing Signed-off-by: Diego Moura Co-authored-by: Jamie Klassen --- exercises/11_hashmaps/hashmaps3.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/exercises/11_hashmaps/hashmaps3.rs b/exercises/11_hashmaps/hashmaps3.rs index 08e977c3..f4c7b9ba 100644 --- a/exercises/11_hashmaps/hashmaps3.rs +++ b/exercises/11_hashmaps/hashmaps3.rs @@ -4,10 +4,10 @@ // the form : ",,," // 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! //