Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Restricted Sum by dasich12
def checkio(data, curr=0, s=0):
if curr < len(data):
s += data[curr]
s = checkio(data, curr+1, s)
return s
Sept. 21, 2015