Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. stuff_ive_seen = [] # you've seen nothing
  2. for x in your_list_with_dupes:
  3. if x in stuff_ive_seen:
  4. print('dupe', x)
  5. stuff_ive_seen.append(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement