view bin/uniqs @ 8088:3f90926b83c9

<oerjan> learn Sgeolang used to change frequently, but eventually it rusted in place.
author HackBot
date Fri, 20 May 2016 00:47: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