Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for Digits Multiplication by Simon_R
def checkio(number: int) -> int:
result = 1
for x in str(number):
if x != '0':
result *= int(x)
return result
Aug. 16, 2019