Files
30-seconds-of-code/snippets/has_duplicates.md
Isabelle Viktoria Maciohsek 0a2f7993f7 Update snippet descriptions
2020-11-02 19:28:05 +02:00

21 lines
383 B
Markdown

---
title: has_duplicates
tags: list,beginner
---
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.
```py
def has_duplicates(lst):
return len(lst) != len(set(lst))
```
```py
x = [1, 2, 3, 4, 5, 5]
y = [1, 2, 3, 4, 5]
has_duplicates(x) # True
has_duplicates(y) # False
```