Files
30-seconds-of-code/snippets/has_duplicates.md
Isabelle Viktoria Maciohsek 6a56601861 Fix typo in has_duplicates
`flast` -> `flat`
2020-02-10 19:30:26 +02:00

408 B

title, tags
title tags
has_duplicates list,beginner

Returns True if there are duplicate values in a flat list, False otherwise.

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