Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Restricted Sum by Oleg_Levonjuk
def checkio(data):
return 0 if data == [] else data[0] + checkio(data[1:])
April 10, 2020