Skip to content

Instantly share code, notes, and snippets.

@jobel-code
Created January 14, 2019 12:13
Show Gist options
  • Save jobel-code/c16d0df1fa5a8879010e4cecf60fd463 to your computer and use it in GitHub Desktop.
Save jobel-code/c16d0df1fa5a8879010e4cecf60fd463 to your computer and use it in GitHub Desktop.
Find duplicates in a list
# Find duplicates in list
import collections
def find_duplicates(my_list:list)->list:
return [item for item, count in collections.Counter(my_list).items() if count > 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment