view bin/uniqs @ 11112:6412d84cf279

<oerjan> sled bin/rot13//1c#!/hackenv/bin/shebang_args_or_input python
author HackBot
date Sat, 22 Jul 2017 00:41:18 +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