Files
30-seconds-of-code/snippets/all_unique.md
Isabelle Viktoria Maciohsek 6169dda836 Fix typos
2021-01-07 23:30:28 +02:00

22 lines
406 B
Markdown

---
title: all_unique
tags: list,beginner
---
Checks if all the values in a list are unique.
- Use `set()` on the given list to keep only unique occurrences.
- Use `len()` to compare the length of the unique values to the original 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
```