Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Convert and Iterate solution in Clear category for Digits Multiplication by bryukh
def checkio(number):
"""
Convert into the string and iterate.
"""
res = 1
for d in str(number):
res *= int(d) if int(d) else 1
return res
Feb. 20, 2014
Comments: