Update formatting and description in all_unique
This commit is contained in:
@ -3,9 +3,9 @@ title: all_unique
|
|||||||
tags: list,beginner
|
tags: list,beginner
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns `True` if all the values in a flat list are unique, `False` otherwise.
|
Returns `True` if all the values in a list are unique, `False` otherwise.
|
||||||
|
|
||||||
Use `set()` on the given list to remove duplicates, compare its length with the length of the list.
|
Use `set()` on the given list to remove duplicates, use `len()` to compare its length with the length of the list.
|
||||||
|
|
||||||
```py
|
```py
|
||||||
def all_unique(lst):
|
def all_unique(lst):
|
||||||
|
|||||||
Reference in New Issue
Block a user