-
-
Save adamochayon/51a17b95dd3d73aa6572d67a02b33f90 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
... | |
synonyms = defaultdict(set) | |
for w1, w2 in synonym_words: | |
synonyms[w1].add(w2) | |
... | |
elif (w2 in synonyms.get(w1, tuple()) or | |
w1 in synonyms.get(w2, tuple())): | |
continue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment