Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
recursion solution in Scary category for Multiply (Intro) by oduvan
def mult_two(a: int, b: int) -> int:
if a == 0 or b == 0:
return 0
return mult_two(a, b-1) + a
Nov. 10, 2022
Comments: