diff options
| author | mo8it <mo8it@proton.me> | 2024-07-16 18:21:07 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-07-16 18:21:07 +0200 |
| commit | 362473dde012e2d703a95297c0aa846805627180 (patch) | |
| tree | ed59a980c6e655651a36f84d43b733730c72d6d6 /solutions | |
| parent | 8339682112fd342448eddaa3fe3e605aa4162fec (diff) | |
Sync exercise and solution
Diffstat (limited to 'solutions')
| -rw-r--r-- | solutions/11_hashmaps/hashmaps2.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solutions/11_hashmaps/hashmaps2.rs b/solutions/11_hashmaps/hashmaps2.rs index a5e6ef9..75e6ec2 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; |
