view bin/uniqs @ 10190:ca23294c6863

<oerjan> addquote <Phantom_Hoover> but i said at the start \'i have good reasons for this, i\'m not crazy\'!
author HackBot
date Sun, 29 Jan 2017 10:31:51 +0000
parents c989a1669243
children
line wrap: on
line source

#!/usr/bin/python
s=set()
try:
 while True:
  l=raw_input()
  if l not in s:
   s.add(l)
   print(l)
except EOFError:
 pass