Fix typos

This commit is contained in:
Isabelle Viktoria Maciohsek
2021-01-07 23:30:28 +02:00
parent be5357b291
commit 6169dda836
5 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ tags: list,beginner
Checks if all the values in a list are unique.
- Use `set()` on the given list to keep only unique occurences.
- 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