Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by kamjir
import math
def checkio(number: int) -> int:
return math.prod([int(n) for n in list(str(number)) if n !="0"])
Sept. 3, 2020