X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/4e09563052459f99272cfee99d44f8a9abce85cb..d57af8e41dd0a0a46fc411ad2488d029244921e1:/solution_8_broken.py diff --git a/solution_8_broken.py b/solution_8_broken.py index 06beb89..554fcd9 100644 --- a/solution_8_broken.py +++ b/solution_8_broken.py @@ -1,22 +1,17 @@ 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 + max_word = word + max_score = score print max_score print max_word - -