Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Ƹ̵̡Ӝ̵̨̄Ʒ solution in Clear category for Restricted Sum by vmiimu
def checkio(n):
if len(n) == 1:
return n[0]
else:
n[0] += n.pop()
return checkio(n)
Nov. 17, 2018