set()
on the given list to remove duplicates, compare its length with the length of the list.def has_duplicates(lst):
return len(lst) != len(set(lst))
x = [1, 2, 3, 4, 5, 5] y = [1, 2, 3, 4, 5] has_duplicates(x) # True has_duplicates(y) # False
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️