view bin/uniqs @ 11277:48ea762232c6

<oerjan> revert
author HackBot
date Sat, 16 Dec 2017 21:29:17 +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