Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Restricted Sum by shuubun
def checkio(data):
def red(l):
if len(l)>1:
return l[0]+ red(l[1:])
else:
return l[0]
return red(data)
March 27, 2016