Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by Bartlomiej_Szal
def checkio(number):
if number == 0:
return 0
outcome = 1
strNum = str(number)
for i in range(len(strNum)):
if strNum[i] != '0':
outcome *= int(strNum[i])
return outcome
Oct. 9, 2016
Comments: