Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
easy to understand solution in Clear category for Digits Multiplication by five_east_west
def checkio(number: int) -> int:
c = 1
for i in str(number):
if int(i) == 0:
continue
c *= int(i)
return c
May 28, 2020