view bin/uniqs @ 8352:9992dab882dc

<moon_> mkx bin/brand//for i in {1..8}; do echo -n $((RANDOM % $1)); done
author HackBot
date Sun, 05 Jun 2016 23:50:00 +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