Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
functools.reduce solution in Creative category for Digits Multiplication by David_Jones
from functools import reduce
def checkio(number):
return reduce(lambda x, y: x * y, (int(d) or 1 for d in str(number)))
May 1, 2019
Comments: