Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for Digits Multiplication by ksc38317
def checkio(number: int) -> int:
out_num = 1
for i in str(number).replace('0',''):
out_num *= int(i)
return out_num
June 24, 2019