forked from pybites/challenges
-
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
5fabee5
commit ef87069
Showing
4 changed files
with
235,946 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,6 @@ | ||
DICTIONARY = 'dictionary.txt' | ||
|
||
scrabble_scores = [(1, "E A O I N R T L S U"), (2, "D G"), (3, "B C M P"), | ||
(4, "F H V W Y"), (5, "K"), (8, "J X"), (10, "Q Z")] | ||
LETTER_SCORES = {letter: score for score, letters in scrabble_scores | ||
for letter in letters.split()} |
Oops, something went wrong.