리스트의 원소 숫자 세기 : 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)
'언어 > Scala' 카테고리의 다른 글
scala for comprehension, for {...} yield (0) | 2020.02.03 |
---|---|
type / class 확인하기 (0) | 2020.01.26 |
for{...} yield 이해하기2 (0) | 2020.01.26 |
for loop/ for() /for{} /for(...) yield (0) | 2020.01.26 |
set 1.2.8 실행 오류 / sbt 1.2.8 can not execute / sbt Java.io.ioerror: java.lang.runtimeexception: /packages cannot be represented as URI (0) | 2020.01.26 |