Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by denys.contant
from operator import mul
from functools import reduce
def checkio(number):
return reduce(mul, [int(n) for n in str(number) if n!='0'])
Oct. 5, 2018
Comments: