view bin/uniqs @ 6077:95fa8ec1e331

<ais523> asm lea 0x1234, %al
author HackBot
date Fri, 16 Oct 2015 23:44:30 +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