Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Digits Multiplication by TovarischZhukov
def checkio(number):
a = [1];[a.append(int(elem) * a[-1]) for elem in str(number) if int(elem) != 0][-1]
return a[-1]
Dec. 2, 2015