Question: How many iterations does the while loop have, assuming L has n elements? def h(L): while len(L) > 1: mid = len(L)//2 L = L[:mid]

How many iterations does the while loop have, assuming L has n elements? def h(L): while len(L) > 1: mid = len(L)//2 L = L[:mid] O log(n) O nlog(n) 0 n*2 Other
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
