Skip to content

Instantly share code, notes, and snippets.

@milimetric
Created April 26, 2013 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milimetric/5468518 to your computer and use it in GitHub Desktop.
Save milimetric/5468518 to your computer and use it in GitHub Desktop.
def deduplicate(list_of_objects, key_function):
uniques = dict()
for o in list_of_objects:
key = key_function(o)
if not key in uniques:
uniques[key] = o
return uniques.values()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment