Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by dzhamal.bakriev
def checkio(number: int) -> int:
result=1
for x in str(number):
if int(x)!=0:
result *= int(x)
return result
May 26, 2020