X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/4e09563052459f99272cfee99d44f8a9abce85cb..d57af8e41dd0a0a46fc411ad2488d029244921e1:/solution_5_easy.py diff --git a/solution_5_easy.py b/solution_5_easy.py index d34efdc..eec37fa 100644 --- a/solution_5_easy.py +++ b/solution_5_easy.py @@ -1,7 +1,6 @@ import scrabble - -# Print every other word that starts with 'a' and ends with 9 +# Print every other word that starts with 'a' and is more than 9 letters long. # This is the most basic implementation: keep a boolean to track whether the word # was printed. @@ -14,4 +13,3 @@ for word in scrabble.wordlist: should_i_print = False else: should_i_print = True -