Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Recursive unpack solution in Clear category for Restricted Sum by nomorecoffee
def fun(x, *other):
return x + fun(*other) if other else x
def checkio(data):
return fun(*data)
Feb. 12, 2020