view bin/uniqs @ 8367:76c1fc793a46

<Moon__> mk gs2//python gs2.py
author HackBot
date Mon, 06 Jun 2016 04:12:50 +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