view bin/uniqs @ 9277:a44c751f1302

<oerjan> learn i,i is short for "I have wasps in my underwear, and want to distract myself by saying"
author HackBot
date Fri, 14 Oct 2016 01:39:27 +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