Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
math.prod() solution in Clear category for Digits Multiplication by adogadkin
import math
def checkio(number: int) -> int:
return math.prod(int(d) for d in str(number) if d != "0")
March 16, 2020