Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Rec solution in Clear category for Restricted Sum by karwowskit
def checkio(data):
if len(data) == 0:
return 0
return data[0] + checkio(data[1:])
Feb. 7, 2019