forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1366ff
commit ab2161e
Showing
2 changed files
with
235,914 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import collections, pprint, time, os | ||
|
||
start_time = time.time() | ||
print('creating word list...') | ||
path = os.path.split(os.path.realpath(__file__)) | ||
word_list = sorted(list(set([word.strip().lower() for word in open(path[0] + '/words')]))) | ||
|
||
def signature(word): | ||
return ''.join(sorted(word)) | ||
|
||
word_bysig = collections.defaultdict(list) | ||
for word in word_list: | ||
word_bysig[signature(word)].append(word) | ||
|
||
def anagram(myword): | ||
return word_bysig[signature(myword)] | ||
|
||
print('finding anagrams...') | ||
all_anagrams = {word: anagram(word) | ||
for word in word_list if len(anagram(word)) > 1} | ||
|
||
print('writing anagrams to file...') | ||
with open('anagrams.txt', 'w') as file: | ||
file.write('all_anagrams = ') | ||
file.write(pprint.pformat(all_anagrams)) | ||
|
||
total_time = round(time.time() - start_time, 2) | ||
print('Done [', total_time, 'seconds ]') |
Oops, something went wrong.