Skip to content

Instantly share code, notes, and snippets.

@jesstess
Created June 17, 2013 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jesstess/5801497 to your computer and use it in GitHub Desktop.
Save jesstess/5801497 to your computer and use it in GitHub Desktop.
import sys
scores = {"A": 1, "C": 3, "B": 3, "E": 1, "D": 2, "G": 2,
"F": 4, "I": 1, "H": 4, "K": 5, "J": 8, "M": 3,
"L": 1, "O": 1, "N": 1, "Q": 10, "P": 3, "S": 1,
"R": 1, "U": 1, "T": 1, "W": 4, "V": 4, "Y": 4,
"X": 8, "Z": 10}
# Get the Scrabble rack from the command line.
if len(sys.argv) < 2:
print("Please supply a Scrabble rack.")
exit(1)
rack = sys.argv[1]
# Turn the words in the sowpods.txt file into a Python list.
wordlist = []
try:
with open("sowpods.txt", "r") as f:
for line in f:
wordlist.append(line.strip())
except EnvironmentError:
print("Oops, I couldn't find sowpods.txt.")
print("Am I in the right place?")
exit(1)
# Find all of the valid sowpods words that can be made
# up of the letters in the rack.
valid_words = []
for word in wordlist:
candidate = True
rack_letters = list(rack)
for letter in word:
if letter not in rack_letters:
candidate = False
break # No need to keep checking letters.
else:
rack_letters.remove(letter)
if candidate == True:
# Get the Scrabble scores for each word.
total = 0
for letter in word:
total = total + scores[letter]
valid_words.append([total, word])
# Print the valid words, sorted by Scrabble score.
valid_words.sort()
for entry in valid_words:
score = entry[0]
word = entry[1]
print(str(score) + " " + word)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment