view bin/uniqs @ 7790:4657e59512c4

<hppavilion[1]> mkx bin/blame//echo It was tswett\'s fault! Punish them!
author HackBot
date Fri, 06 May 2016 00:22: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