Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2-liner: reduce & operator.mul solution in Creative category for Digits Multiplication by Stensen
import functools as fn, operator as op
checkio = lambda n: fn.reduce(op.mul, map(int, str(n).replace('0', '')))
Nov. 9, 2020