Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by paolo.carlevero
def checkio(number):
x = 1
for n in [n for n in str(number) if int(n) != 0]:
x = x*int(n)
return x
April 13, 2021