Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Digits Multiplication by tokiojapan55
from functools import reduce
def checkio(number: int) -> int:
return reduce(lambda a, b: int(b) * a, str(number).replace('0', ''), 1)
Dec. 26, 2023
Comments: