Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by OrginalS
def checkio(x):
res = 1
x = list(map(int,str(x)))
for num in x:
if num != 0:
res *= num
return res
Sept. 3, 2019
Comments: