Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Restricted Sum by werepire
def checkio(data):
def razem(i, tab):
if i==0:
return tab[i]
else:
return razem(i-1, tab)+tab[i]
return razem(len(data)-1, data)
Nov. 6, 2016