X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..HEAD:/solution_8_broken.py diff --git a/solution_8_broken.py b/solution_8_broken.py index 06beb89..ca69bae 100644 --- a/solution_8_broken.py +++ b/solution_8_broken.py @@ -1,22 +1,18 @@ import scrabble - -# See if you can tell the difference between this solution and the broken solution. - - +# See if you can tell the difference between this solution and the working solution. max_score = 0 max_word = '' + for word in scrabble.wordlist: if word[0] == 'a' and word[3] == 'e' and len(word) <= 7 and len(word) >= 4: - score = 0 + 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)