view bin/uniqs @ 11229:32f8f3418a02

<quintopia> le/rn Seventh Day Adventism//Seventh Day Adventism is an attempt to bugfix an off-by-one error in Anabaptism
author HackBot
date Sat, 28 Oct 2017 22:51:26 +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