Update filter_unique.md

This commit is contained in:
Angelos Chalaris
2020-01-05 14:39:21 +02:00
committed by GitHub
parent 949a29df4f
commit ded0927bad

View File

@ -5,7 +5,7 @@ tags: list,beginner
Filters out the unique values in a list.
Use `Counter` to get the count of each value in the list.
Use a `Counter` to get the count of each value in the list.
Use list comprehension to create a list containing only the non-unique values.
```py