Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
two for loops solution in Scary category for Multiply (Intro) by PythonWithPI
def mult_two(n,m):
p=0
for _ in range(m):
for _ in range(n):
p = -~p
return p
May 6, 2019
Comments: