Advertisement
TheRedRover

6 kyu Sums of Parts

Apr 24th, 2020
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.08 KB | None | 0 0
  1. object Kata {
  2.   def partsSums(l: List[Int]): List[Int] =
  3.     l.scanRight(0)(_ + _)
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement