Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by wbl4126
def checkio(number: int) -> int:
ret = 1
for n in str(number):
if n != '0':
ret *= int(n)
return ret
Dec. 20, 2019