Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Multiply (Intro) by dig
def mult_two(a: int, b: int) -> int:
return sum([a for _ in range(b)])
Feb. 3, 2023
Comments: