Question: II have the answer to 5, where the run-time complexity is O(n^2), but im confused on how to find 6? would it be similar to
II have the answer to 5, where the run-time complexity is O(n^2), but im confused on how to find 6? would it be similar to finding the lower bound in 7? Could you solve 6 and then tell me what direction I go in solving number 7.
Problem 5 Find the running time equation for the following program. ]: # # Input: A is a list of numbers, z is a number # def prob5(A, 2): output = [] for x in A: for y in A: if x+y==Z: output.append(z) return output ANSWER Problem 6 Find an upper-bound complexity of the running time equation for prob5. ANSWER Problem 7 Find a lower-bound complexity of the running time equation for prob5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
