Update solution files to match exercise files

This commit is contained in:
Jatin Sanghvi
2025-12-19 19:32:24 +05:30
parent b5d440fdc3
commit 1ebb4d25a6
6 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// A basket of fruits in the form of a hash map needs to be defined. 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 at least 3 different
// types of fruits (e.g apple, banana, mango) in the basket and the total count
// types of fruits (e.g. apple, banana, mango) in the basket and the total count
// of all the fruits should be at least 5.
use std::collections::HashMap;