First solution in Clear category for Restricted Sum by ClementBC
def checkio(l): if l == []: return(0) else: return(l.pop() + checkio(l))
April 19, 2016