Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
rec ! solution in Speedy category for Restricted Sum by timiway
def checkio(data):
return data[0] if len(data) == 1 else data[0]+checkio(data[1:])
May 16, 2014
Comments: