reword hashmaps2 a bit more

This commit is contained in:
liv 2023-03-26 15:21:21 +02:00
parent 5687676014
commit 864e741dd8

View file

@ -1,10 +1,12 @@
// hashmaps2.rs // hashmaps2.rs
// A basket of fruits in the form of a hash map is given. The key // We're collecting different fruits to bake a delicious fruit cake.
// represents the name of the fruit and the value represents how many // For this, we have a basket, which we'll represent in the form of a hash
// of that particular fruit is in the basket. // map. The key represents the name of each fruit we collect and the value
// Three types of fruits - Apple (4), Mango (2) and Lychee (5) are already given in the basket. // 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 // You must add fruit to the basket so that there is at least
// one of each kind and more than 11 in total. // 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! // You are not allowed to insert any more of these fruits!
// //
// Make me pass the tests! // Make me pass the tests!