Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by michael.kej
def checkio(number):
total = 1
for i in str(number).replace('0', '1'):
total *= int(i)
return total
Sept. 6, 2014
Comments: