Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by MaciejKrasny
def checkio(number):
result=1
for i in str(number):
n=int(i)
if not n:
result= result*(n+1)
else:
result= result*n
return result
Oct. 26, 2016