Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Digits Multiplication solution in Clear category for Digits Multiplication by michal_bien
def checkio(number):
result = 1
for char in str(number):
if char!='0':
result*=int(char)
return result
Oct. 6, 2016