loom-benchmark-mbpp / 127 /solution /_reference.py
sqy201x's picture
Add files using upload-large-folder tool
759f238 verified
Raw
History Blame Contribute Delete
194 Bytes
def multiply_int(x, y):
if y < 0:
return -multiply_int(x, -y)
elif y == 0:
return 0
elif y == 1:
return x
else:
return x + multiply_int(x, y - 1)