Skip to content

Instantly share code, notes, and snippets.

@CesarNog
Created February 3, 2015 14:46
Show Gist options
  • Save CesarNog/478e3ac7c337857ede61 to your computer and use it in GitHub Desktop.
Save CesarNog/478e3ac7c337857ede61 to your computer and use it in GitHub Desktop.
Remove duplicates in a list
def remove_duplicates(listNumbers):
total=[]
for i in listNumbers:
if i in total:
continue
else:
total.append(i)
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment