Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Recursive in two lines solution in Clear category for Restricted Sum by Dodge
def checkio(data):
res = 0 if not data else data.pop()+ checkio(data)
return res
Feb. 18, 2014
Comments: