Skip to content

Home

Check if list has no duplicates

Checks if all the values in a list are unique.

def all_unique(lst):
  return len(lst) == len(set(lst))

x = [1, 2, 3, 4, 5, 6]
y = [1, 2, 2, 3, 4, 5]
all_unique(x) # True
all_unique(y) # False

More like this

Start typing a keyphrase to see matching snippets.