Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Digits Multiplication by capback250
def checkio(text):
a = 1
if len(str(text)) == 0:
return 0
else:
for i in str(text).replace('0', ''):
a = a*int(i)
return a
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio(123405) == 120
assert checkio(999) == 729
assert checkio(1000) == 1
assert checkio(1111) == 1
Aug. 1, 2015