Scala Map: Find keys with maximum value
Write a Scala program to create a map and find the keys with the maximum value.
Sample Solution:
Scala Code:
Sample Output:
Original map: Map(Red -> 1, Green -> 4, Blue -> 3, Orange -> 4) The keys with the maximum value are: Set(Green, Orange)
Explanation:
In the above exercise,
First, we create a map "color_map" using the Map constructor and provide key-value pairs.
In order to find the keys with the maximum value in the map, we follow these steps:
- Find the maximum value in the map using the values.max method.
- To filter key-value pairs where the value is equal to the maximum, use the filter method on the map.
- Using the keys method, retrieve the keys from filtered key-value pairs.
Finally, we print the result using println, including the keys with the maximum value.
Scala Code Editor :
Previous: Find average of values.
Next: Find keys with minimum value.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics