Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Restricted Sum by Sergey_h
def checkio(data):
b = str(data)
b = b.replace("[","")
b = b.replace("]","")
b = b.replace(",","+")
return eval(b)
Nov. 11, 2017