Hackerrank – Reverse a list
Popis problému Celý popis zadania sa nacháza – Hackerrank. Riešenie
1 2 3 4 |
object ReverseList extends App { def f(arr: List[Int]): List[Int] = (arr.foldLeft(List.empty[Int])((list, e) => e :: list)) } |
Riešenie tiež dostupnén na mojom GitHub profile.