Merge pull request #1 from ben-zen/master
[wordplay-cdsw-solutions] / solution_8.py
index d183cd2fbfbfb176f104214431a197cd6f95a73e..75aaa5e2e9cca63c7d901e62e97cfa34690391a2 100644 (file)
@@ -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
+            max_word = word
+            max_score = score
 
 print max_score
 print max_word
-
-

Benjamin Mako Hill || Want to submit a patch?