관리자

리스트의 원소 숫자 세기 : counting number of elements in the list

ex. ["a", "b", "c" ,"a", "c", "a" ] -> [("a", 3), ("b",1), ("c", 2)]

 

def count(L : list) = L.groupby(identity).mapValues(_.size)

 

+ Recent posts