Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by -ej
import math
def checkio(number: int) -> int:
return math.prod([int(d) for d in str(number) if d != '0'])
Oct. 14, 2025
Comments: