from functools import reduce | |
def map( func, iterable): | |
def f(a, b): | |
return a + [func(b)] | |
return reduce( f, iterable, [] ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
from functools import reduce | |
def map( func, iterable): | |
def f(a, b): | |
return a + [func(b)] | |
return reduce( f, iterable, [] ) |