Skip to content

Instantly share code, notes, and snippets.

@mittenchops
Created July 23, 2013 18:42
Show Gist options
  • Save mittenchops/6064999 to your computer and use it in GitHub Desktop.
Save mittenchops/6064999 to your computer and use it in GitHub Desktop.
Return a list of only unique elements.
def unique(x):
return(list(set(x)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment