Skip to content

Instantly share code, notes, and snippets.

@utinajerolps
Created September 11, 2014 21:28
Show Gist options
  • Save utinajerolps/d818fd018f006086f67d to your computer and use it in GitHub Desktop.
Save utinajerolps/d818fd018f006086f67d to your computer and use it in GitHub Desktop.
def remove_duplicates(cats):
dogs = []
for dups in cats:
if dups not in dogs:
dogs.append(dups)
return dogs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment