view bin/uniqs @ 8997:afa2eddb9004

<int-e> revert
author HackBot
date Wed, 31 Aug 2016 21:50:31 +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