Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for Digits Multiplication by flpo
from functools import partial, reduce
from operator import mul
checkio = partial(
reduce,
lambda y, f: f(y),
(str, partial(map, int), partial(filter, None), partial(reduce, mul))
)
July 7, 2017