I need to write a program that receives list of numbers and show the cumulative sum, only with recursion!
for example:
input:
1,2,3
output:
1,3,6
my problem is that I have some tests to run on the function and I have to get true for all of them, but I get false b/c my func change the input. someone have an idea how to fix it? (and I cant change the tests of course..)
def rec_cumsum(numbers):
''' Input: numbers - a list of numbers,
Output: a list of cumulative sums of the numbers'''
if len(numbers) == 0 : return numbers
if len(numbers) == 1 : return numbers
numbers[1] = numbers[0] + numbers[1]
return [numbers[0]] + rec_cumsum(numbers[1:])
### Testing code
def test_rec_cumsum(numbers):
return rec_cumsum(numbers) == [sum(numbers[:i]) for i in range(1,len(numbers)+1)]
import random
print test_rec_cumsum([1,2,3])
print test_rec_cumsum(random.sample(range(100),30))
print test_rec_cumsum([])