view bin/uniqs @ 7604:3ddb3ea01af1

<Moon_> ` mv wGAUV3ER Something.c
author HackBot
date Fri, 29 Apr 2016 00:14:19 +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