X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..HEAD:/solution_8.py diff --git a/solution_8.py b/solution_8.py index d183cd2..732deeb 100644 --- a/solution_8.py +++ b/solution_8.py @@ -1,22 +1,17 @@ import scrabble - # See if you can tell the difference between this solution and the broken solution. - - max_score = 0 max_word = '' for word in scrabble.wordlist: - if len(word) <= 7 and len(word) >= 5 and word[0] == 'a' and word[3] == 'e': - score = 0 + if len(word) <= 7 and len(word) >= 4 and word[0] == 'a' and word[3] == 'e': + score = 0 for char in word: score = score + scrabble.scores[char] if score > max_score: - max_word = word - max_score = score - -print max_score -print max_word + max_word = word + max_score = score +print(str(max_score) + " : " + max_word)