Update some snippets

This commit is contained in:
Angelos Chalaris
2019-08-20 10:13:54 +03:00
parent 0f405f0da9
commit a340ba4492
4 changed files with 8 additions and 29 deletions

View File

@ -9,7 +9,7 @@ Use `set()` on the given list to remove duplicates, compare its length with the
```py
def all_unique(lst):
return len(lst) == len(set(lst))
return len(lst) == len(set(lst))
```
```py