Merge pull request #1 from ben-zen/master
[wordplay-cdsw-solutions] / solution_2.py
index 9d5469d8cbbc5a93f2c0e221cd2214390a545f8b..335c79ae56ea5675693ba047c0df7ee2f2eed4e0 100644 (file)
@@ -1,6 +1,5 @@
 import scrabble
 
-
 # What is the longest word that starts with a q?
 # This is the most common student solution, which prints the *first* occurence of
 # the longest word. See solution_2_advanced.py for more info.
@@ -10,12 +9,8 @@ longest_so_far = '' # Store the longest word we've seen up to this point.
 for word in scrabble.wordlist:
 
     if word[0] == 'q':
-       if len(word) > len(longest_so_far):  # What if I use >= rather than > here?
-           longest_so_far = word
-            #print word  # Use this to see the progression.
-
+        if len(word) > len(longest_so_far): # What if I use >= rather than > here?
+            longest_so_far = word
+            #print word # Use this to see the progression.
 
 print longest_so_far
-            
-
-

Benjamin Mako Hill || Want to submit a patch?