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