view bin/uniqs @ 5845:b7c3d318e0e6

<Jafet> ` echo $\'#!python\\ns=set()\\ntry:\\n while True:\\n l=raw_input()\\n if l not in s:\\n s.add(l)\\n print(l)\\nexcept IOError:\\n pass\' > bin/uniqs && chmod +x bin/uniqs
author HackBot
date Sat, 18 Jul 2015 10:25:33 +0000
parents
children aae488a4cfcf
line wrap: on
line source

#!python
s=set()
try:
 while True:
  l=raw_input()
  if l not in s:
   s.add(l)
   print(l)
except IOError:
 pass