Merge pull request #180 from 30-seconds/fix-typo-counter

Fix Counter typo
This commit is contained in:
Angelos Chalaris
2020-01-09 09:08:12 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -5,7 +5,7 @@ tags: list,beginner
Filters out the unique values in a list.
Use a `Counter` to get the count of each value in the list.
Use a `collections.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