Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
map() with tricky List usage solution in Clear category for Restricted Sum by assargin
def f(s, e):
s[0] += e
def checkio(data):
s = [0]
# set() is f0rcing map() execution
set(map(lambda e: f(s, e), data))
return s[0]
Feb. 19, 2020
Comments: