I have a map that has SomeClass -> Double I want to get the SomeClass associated with the smallest value. How do I go about doing this? Ties do not
SomeClass -> Double
SomeClass
Use minBy:
Map("a" -> 3.0, "b" -> 1.0, "c" -> 2.0).minBy(_._2)._1
This gives "b" as expected.
"b"