Recursive one-liner solution in Creative category for Restricted Sum by suic
checkio = lambda d: bool(d) and d.pop() + checkio(d)
March 16, 2016
Comments: