Skip to content

Instantly share code, notes, and snippets.

@internetimagery
Last active November 7, 2015 05:17
Show Gist options
  • Select an option

  • Save internetimagery/5d97ae9a473bd63ae664 to your computer and use it in GitHub Desktop.

Select an option

Save internetimagery/5d97ae9a473bd63ae664 to your computer and use it in GitHub Desktop.
Uniquify list
# http://www.peterbe.com/plog/uniqifiers-benchmark
def unique(lst):
a = set(lst)
return [b for b in lst if b in a and not a.remove(b)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment