Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Specify the best-case and worst-case asymptotic runtime of the following Python functions using big- notation in terms of n, the number of elements in the
Specify the best-case and worst-case asymptotic runtime of the following Python functions using big- notation in terms of n, the number of elements in the list of integers vals. Justify your answers in a sentence or two. a. def test1(vals): out =[] for i in range (2,10) : total =0 for j in range(len ( vals )) : if vals [j]% i ==0 : total +=1 out.append(total) b. def test2(vals): for ele in vals: for ele2 in vals: if ele + ele2 ==10: return True for ele3 in vals: for ele4 in vals: if ele3 ele4 ==10: return True
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started