Files
30-seconds-of-code/python/snippets/has-duplicates.md
2023-05-01 22:43:50 +03:00

467 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Check for duplicates in list snippet
list
jars-on-shelf-2 2020-11-02T19:28:05+02:00

Checks if there are duplicate values in a flat list.

  • Use 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