view bin/uniqs @ 11761:1e5c15d8a461 draft

<oerjan> le/rn abelian group//An abelian group is a group that spends all its time commuting, and therefore never does any real work.
author HackEso <hackeso@esolangs.org>
date Wed, 27 Mar 2019 23:24:14 +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