What is the slickest, most Ruby-like way of calculating the cumulative sum of an array?
Example:
[1,2,3,4].cumulative_sum
should return
[1,3,6,10]
|
|
What is the slickest, most Ruby-like way of calculating the cumulative sum of an array? Example:
should return
|
|||
|
|
|
|
|
|||
|
|
The interesting bit is along the lines of
|
||
|
|
|
|
Here is one way
If it is OK that the answer is more than one statement, then this would be cleaner:
|
||
|
|
|
|
We could also take a note from Haskell and make a ruby version of scanr.
|
||
|
|
|
|
One more approach ( though I prefer khell's)
I saw the answer posted by hrnt after posting my answer. Though two approaches look the same, solution above is more efficient as the same array is used in each inject cycle.
You will notice r and k are different. If you do the same test for the solution above:
The object id for r and k are the same. |
|||
|
|