recursion solution in Clear category for Restricted Sum by cheikhnamouna
def checkio(d): return d[0] + checkio(d[1:]) if d else 0
Dec. 31, 2018