Files
30-seconds-of-code/snippets/has_duplicates.md
Angelos Chalaris 08810dd64e Update some snippets
2019-08-20 10:45:53 +03:00

21 lines
400 B
Markdown

---
title: has_duplicates
tags: list,beginner
---
Returns `True` if there are duplicate values in a flast list, `False` otherwise.
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
```