From 362473dde012e2d703a95297c0aa846805627180 Mon Sep 17 00:00:00 2001 From: mo8it Date: Tue, 16 Jul 2024 18:21:07 +0200 Subject: [PATCH] Sync exercise and solution --- solutions/11_hashmaps/hashmaps2.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solutions/11_hashmaps/hashmaps2.rs b/solutions/11_hashmaps/hashmaps2.rs index a5e6ef9b..75e6ec2c 100644 --- a/solutions/11_hashmaps/hashmaps2.rs +++ b/solutions/11_hashmaps/hashmaps2.rs @@ -5,7 +5,8 @@ // 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! +// to insert any more of the fruits that are already in the basket (Apple, +// Mango, and Lychee). use std::collections::HashMap;