a string with comma-separated list elements using:
a. foldleft
def foldLeftFunc(list: List[String]): String = {
list.foldLeft("")(_ + "," + _)
}
как убрать запятую перед первым елементом?)
scastie.scala-lang.org
Обсуждают сегодня