Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by JamesNippoc
def checkio(number):
n = 1
for x in str(number):
if int(x): n*=int(x)
return n
#These "asserts" using only for self-checking and not necessary for auto-testing
May 24, 2014
Comments: