Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
recursive solution in Clear category for Restricted Sum by suitch1982
def checkio(data):
return data.pop(0)+checkio(data) if len(data)!=0 else 0
May 31, 2019
Comments: