Created
January 18, 2019 16:32
-
-
Save alexgolec/b70999e3dd7423e3a47daae47f3c7737 to your computer and use it in GitHub Desktop.
This file contains hidden or 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].append(w2) | |
synonyms[w2].append(w1) | |
... | |
elif w2 in synonyms.get(w1, tuple()): | |
continue |
and block
...
elif w2 in synonyms.get(w1, tuple()):
continue
should have a indents, becouse it in loop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
set
usesadd
, notappend