Created
July 28, 2021 17:28
-
-
Save complexsplit/55714b8c7e260aeb3ad70306c5572a1b to your computer and use it in GitHub Desktop.
pythons-collections-duplicate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [1,2,3,2,1,5,6,5,5,5] | |
import collections | |
print([item for item, count in collections.Counter(a).items() if count > 1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment