view bin/uniqs @ 6015:cf85325af7e8

<FreeFull> rm root
author HackBot
date Wed, 16 Sep 2015 12:43:42 +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