Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Digits Multiplication solution in Clear category for Digits Multiplication by Damian_Horna
def checkio(number):
liczba = str(number)
wynik = 1
for x in liczba:
if int(x) != 0:
wynik = wynik * int(x)
return wynik
Oct. 15, 2016