Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by iurii.skorniakov
from functools import reduce
from operator import mul
def checkio(number):
return reduce(mul, filter(bool, map(int, str(number))))
Aug. 31, 2017