Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
[Getting Product Through Sum] [Clear and Weird Solution] solution in Creative category for Multiply (Intro) by sanddro
def mult_two(a: int, b: int) -> int:
return sum(a for _ in range(b))
Feb. 3, 2025
Comments: