Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by tokiojapan55
def checkio(number: int) -> int:
result = 1
for i in [i for i in list(str(number)) if i != '0']:
result *= int(i)
return result
June 22, 2020