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