view bin/uniqs @ 8581:3decea5e129d

<shachaf> makelist minimalist
author HackBot
date Thu, 23 Jun 2016 09:42:34 +0000
parents 9bf80fcf858b
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