Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Popcorn solution in Clear category for Restricted Sum by jmcs
def checkio(data, result=0):
if not data:
return result
next = data.pop()
return checkio(data, next+result)
July 30, 2015