view bin/uniqs @ 6347:cebec2decc48

<FireFly> learn TISC is "The instruction set computers", which refers to computers with instruction sets.
author HackBot
date Wed, 02 Dec 2015 11:29:11 +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