Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
––•–√\/––√\/––•–– solution in Clear category for Digits Multiplication by vmiimu
from functools import reduce
checkio = lambda n: reduce(lambda x, y: x*y if not y == 0 else x, map(int, list(str(n))))
Nov. 19, 2018
Comments: