view bin/uniqs @ 12208:50d588d1d00f draft

<b_jonas> `` set -e; f=/hackenv/bin/STOP; >$f echo $\'#!/bin/sh\\nrm -vf /hackenv/bin/bfbotquine\'; chmod -c a+x "$f"
author HackEso <hackeso@esolangs.org>
date Fri, 29 Nov 2019 23:32:11 +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