Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Straightforward solution in Creative category for Digits Multiplication by nickie
from operator import mul
from functools import reduce
checkio = lambda n: reduce(mul, (int(d) or 1 for d in str(n)), 1)
Feb. 20, 2014
Comments: