Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
[Get Product With Itertools Accumulate] [Creative and Educational Solution] solution in Creative category for Digits Multiplication by sanddro
from operator import mul
from itertools import accumulate
def checkio(number: int) -> int:
return list(accumulate(filter(bool, map(int, str(number))), mul, initial=1))[-1]
Feb. 14, 2025
Comments: