arve
11/05/2018, 1:33 PMval input: List<List<Double>> =
[[1, 2, 3 (....)],
[4, 5, 6, (...)],
[7, 8, 9, (...)]]
val expected= [12, 15, 18, (...)]
Trying to find an elegant way to sum elements of a list of list of numbers by index (i.e. "downwards")🤔camkadev
11/05/2018, 9:15 PM