view bin/uniqs @ 9940:d5eaf076cba2

<shachaf> slwd adventure//s#\\. #. #g
author HackBot
date Sun, 11 Dec 2016 19:42:35 +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