zain
estevanfick
fun main() { val listPairs = listOf("a" to 1, "b" to 2, "c" to 3) println(listPairs.sumBy{ it.second }) }
FunkyMuse