Merge pull request #1 from ben-zen/master
[wordplay-cdsw-solutions] / solution_8_broken.py
index 06beb89b378e8c5c487964b19f34ec1dc5616435..554fcd9798c21f47750f3bd66a7ab075646e406b 100644 (file)
@@ -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
-
-

Benjamin Mako Hill || Want to submit a patch?