First solution in Clear category for Restricted Sum by yukirin
def checkio(data): return data[0] + checkio(data[1:]) if data else 0
April 6, 2015