view bin/uniqs @ 6415:63ca430a3833

<b_jonas> le/rn halfling/Halflings are genericized hobbits for intellectual property reasons.
author HackBot
date Sat, 19 Dec 2015 17:24:13 +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