Merge pull request #1 from ben-zen/master
[wordplay-cdsw-solutions] / solution_3.py
index a3ea28d4f9e7f5c7cf7398362694c5700b9bc0c9..ea53edf3bc844a7d3590e85e832229534f55b969 100644 (file)
@@ -1,12 +1,7 @@
 import scrabble
 
-
-# Find all the words that end in 'nge' 
-
+# Find all the words that end in 'nge'
 
 for word in scrabble.wordlist:
     if word[-3:] == 'nge':
         print word
-            
-
-

Benjamin Mako Hill || Want to submit a patch?