Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
functools.reduce() solution in Clear category for Digits Multiplication by mlahor
import functools
checkio = lambda num: functools.reduce((lambda x, y: x * y), [int(c) for c in str(num) if int(c)])
Feb. 28, 2021