Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
numpy prodding solution in 3rd party category for Digits Multiplication by Phucanh_Trannguyen
from numpy import prod
checkio = lambda number: int(prod( [ int(i) for i in list(str(number)) if i != '0']))
March 23, 2019
Comments: