summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-03-28 10:25:31 +0000
committerGitHub <noreply@github.com>2023-03-28 10:25:31 +0000
commite0e0b3f38794618e65d5b4660b1cc420d9a31352 (patch)
treeb4e93f4cd52ead7edcb4be56c718724474d54821 /exercises
parentb21a4ac12b07931f40d2217dedfa4a71fadfbd9b (diff)
parent864e741dd87eb8df192e6272ae4187bd95f61760 (diff)
Merge pull request #1432 from ryanwhitehouse/main
docs:clarify instructions on hashmaps2.rs
Diffstat (limited to 'exercises')
-rw-r--r--exercises/hashmaps/hashmaps2.rs21
1 files changed, 12 insertions, 9 deletions
diff --git a/exercises/hashmaps/hashmaps2.rs b/exercises/hashmaps/hashmaps2.rs
index 454b3e1..a4f069a 100644
--- a/exercises/hashmaps/hashmaps2.rs
+++ b/exercises/hashmaps/hashmaps2.rs
@@ -1,11 +1,13 @@
// hashmaps2.rs
-
-// A basket of fruits in the form of a hash map is given. The key
-// represents the name of the fruit and the value represents how many
-// of that particular fruit is in the basket. You have to put *MORE
-// THAN 11* fruits in the basket. Three types of fruits - Apple (4),
-// Mango (2) and Lychee (5) are already given in the basket. You are
-// not allowed to insert any more of these fruits!
+// We're collecting different fruits to bake a delicious fruit cake.
+// For this, we have a basket, which we'll represent in the form of a hash
+// map. The key represents the name of each fruit we collect and the value
+// represents how many of that particular fruit we have collected.
+// Three types of fruits - Apple (4), Mango (2) and Lychee (5) are already
+// in the basket hash map.
+// You must add fruit to the basket so that there is at least
+// one of each kind and more than 11 in total - we have a lot of mouths to feed.
+// You are not allowed to insert any more of these fruits!
//
// Make me pass the tests!
//
@@ -34,8 +36,8 @@ fn fruit_basket(basket: &mut HashMap<Fruit, u32>) {
];
for fruit in fruit_kinds {
- // TODO: Put new fruits if not already present. Note that you
- // are not allowed to put any type of fruit that's already
+ // TODO: Insert new fruits if they are not already present in the basket.
+ // Note that you are not allowed to put any type of fruit that's already
// present!
}
}
@@ -44,6 +46,7 @@ fn fruit_basket(basket: &mut HashMap<Fruit, u32>) {
mod tests {
use super::*;
+ // Don't modify this function!
fn get_fruit_basket() -> HashMap<Fruit, u32> {
let mut basket = HashMap::<Fruit, u32>::new();
basket.insert(Fruit::Apple, 4);