Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by ndj_ys
import functools
def checkio(number: int) -> int:
return functools.reduce(lambda x,y:x * y, [int(num) for num in list(str(number)) if num != "0"])
Aug. 14, 2018