Is there a way to find if a list contains duplicates. For example:
list1 = [1,2,3,4,5]
list2 = [1,1,2,3,4,5]
list1.*method* = False # no duplicates
list2.*method* = True # contains duplicates
|
Is there a way to find if a list contains duplicates. For example:
|
|||||||||||||||
|
|
If you convert the list to a set temporarily, that will eliminate the duplicates in the set. You can then compare the lengths of the list and set. In code, it would look like this:
|
|||||||||||||
|
|
Convert the list to a set to remove duplicates. Compare the lengths of the original list and the set to see if any duplicates existed.
|
||||
|
|
|
Check if the length of the original list is larger than the length of the unique "set" of elements in the list. If so, there must have been duplicates
|
||||
|
|
|
The
|
|||||||||
|