view bin/uniqs @ 10457:039ec59edc05

<shachaf> mkx bin/4//cmd="${1-quote}"; \\`^ 4 "$cmd"
author HackBot
date Mon, 20 Mar 2017 01:55:05 +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