Files
30-seconds-of-code/snippets/has_duplicates.md
Isabelle Viktoria Maciohsek cbc78ee450 Bake dates into snippets
2021-06-13 19:38:10 +03:00

459 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
has_duplicates list,beginner 2018-04-01T11:03:09+03:00 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