Question: PYTHON - time and space complexity for this function: def some_func(x, y): result = 1 z = x + 100 for i in range(x): for
PYTHON - time and space complexity for this function:
def some_func(x, y):
result = 1
z = x + 100
for i in range(x):
for j in range(z):
result *= y
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
