Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Extended Iterable Unpacking solution in Clear category for Restricted Sum by suic
def checkio(data):
if not data: return 0
x, *data = data
return x + checkio(data)
Feb. 5, 2016
Comments: