Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Restricted Sum by colorgreen
def checkio(data):
if len(data) == 0:
return False
return eval( "+".join(map(str,data)))
Oct. 11, 2017
Comments: