Files
30-seconds-of-code/snippets/all_unique.md
Angelos Chalaris a340ba4492 Update some snippets
2019-08-20 10:13:54 +03:00

20 lines
383 B
Markdown

---
title: all_unique
tags: list,beginner
---
Returns `True` if all the values in a flat list are unique, `False` otherwise.
Use `set()` on the given list to remove duplicates, compare its length with the length of the list.
```py
def all_unique(lst):
return len(lst) == len(set(lst))
```
```py
x = [1,2,3,4,5,6]
y = [1,2,2,3,4,5]
all_unique(x) # True
all_unique(y) # False
```