Third solution in Clear category for Restricted Sum by ciel
checkio=lambda data: 0 if not data else data.pop()+checkio(data)
March 1, 2015
Comments: