Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple solution in Speedy category for Digits Multiplication by timiway
def checkio(nbr):
c=str(nbr)
m = 1
for i in c:
if int(i):
m*=int(i)
return m
#These "asserts" using only for self-checking and not necessary for auto-testing
May 13, 2014
Comments: