Question: Find the running time equation, and determine its complexity (in terms of O) of the function p7 below. # Input: a list of numbers, L

Find the running time equation, and determine its complexity (in terms of O) of the function p7 below. # Input: a list of numbers, L # Output: a list # def p7(L): output = [] for x in L: if x%2==0: output.append(x*2 + 1) return output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
