Last active
August 31, 2018 14:27
-
-
Save lavie/f70de8f24cf8ecf578ec7d0390a75537 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
words = [line.strip() for line in sys.stdin] | |
for hay in words: | |
if len([needle for needle in words if needle in hay]) == 1: | |
print hay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat old.txt | ./unique.py | |
old |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment