Question: A student has written the following code fo detect if a collection has duplicates. What is its running time? def has dups ( L )

A student has written the following code fo detect if a collection has duplicates. What is its running time?
def has dups(L)
n=len(L)
for i in range(n):
for j in range(n):
If ij and L[i]==L[j]
return True
return False
O(1)
O(log(n))
O(n)
O(n2)
O(n3)
 A student has written the following code fo detect if a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!