Scrabble challenge: Difference between revisions

imported>Jesstess
(Created page with 'There's a huge leap between having learned the fundamentals of a programming language and being able to sit down at a blank text editor and implementing an idea from scratch. Th…')
 
 
(31 intermediate revisions by 11 users not shown)
Line 1:
[[File:Scrabble.jpg|right|300px]]
There's a huge leap between having learned the fundamentals of a programming language and being able to sit down at a blank text editor and implementing an idea from scratch.
 
== Project ==
The Boston Python Meetup would like to have events specifically for practicing "I sit down at a text editor with an idea -- now what?"
 
Write a Scrabble cheater from scratch.
 
== Goals ==
 
* practice breaking down a problem and solving it in Python from scratch
* practice command line argument parsing
* practice reading from files
* practice working with dictionaries and for loops
 
=== Problem Statement ===
Line 7 ⟶ 16:
Write a Python script that takes a Scrabble rack as a command-line argument and prints all valid Scrabble words that can be constructed from that rack, along with their Scrabble scores, sorted by score. An example invocation and output:
 
<pre>[[Media:]]
$ python scrabble.py ZAEFIEE
17 feeze
Line 32 ⟶ 41:
===Resources===
 
* http://wwwcourses.isccms.rocaltech.edu/cs11/material/advjava/listslab1/sowpods.zip contains all words in the official [http://en.wikipedia.org/wiki/SOWPODS SOWPODS] word list, one word per line.
* Here is a dictionary containing all letters and their Scrabble values:
 
Line 47 ⟶ 56:
====Step 1: construct a word list====
 
Write the code to open and read the sowpods word file. Create a list, where each element is a word in the sowpods word file. Note that each line in the file ends in a newline, which you'll need to stripremove from the word.
 
<b>Step 1 resources</b>:
Line 62 ⟶ 71:
====Step 2: get the rack====
 
Write the code to get the Scrabble rack from(the aletters commandavailable lineto argument.make Handlewords) from the casecommand whereline a userargument forgetspassed to supplyyour a rackscript. MakeFor sure you are consistent about capitalization:example if your scoresscript dictionarywere iscalled lowercase`scrabble_cheater.py`, theif lettersyou suppliedran by<tt>python thescrabble_cheater.py userRSTLNEI</tt>, need<tt>RSTLNEI</tt> towould be convertedthe to lowercaserack.
 
Handle the case where a user forgets to supply a rack; in this case, print an error message saying they need to supply some letters, and then exit the program using the <code>exit()</code> function. Make sure you are consistent about capitalization
 
<b>Step 2 resources</b>:
Line 72 ⟶ 83:
Getting and checking the number of command line arguments: http://docs.python.org/library/sys.html.
</li>
<li>Converting letters to lower case: http://docs.python.org/library/stdtypes.html#str.lower</li>
</ul>
 
 
====Step 3: find valid words====
 
Write the code to find all words from the word list that are made of letters that are a subset of the rack letters. There are many ways to do this, but here's one way that is easy to reason about and is fast enough for our purposes: go through every word in the word list, and for every letter in that word, see if that letter is contained in the rack. If it is, save the word in a <tt>valid_words</tt> list. Make sure you handle repeat letters: once a letter from the rack has been used, it can't be used again.
 
<b>Step 3 resources</b>:
Line 83 ⟶ 94:
<li>
List manipulation: http://docs.python.org/tutorial/datastructures.html#more-on-lists.
</li>
<li>
<tt>for</tt> loops: http://docs.python.org/tutorial/controlflow.html#for-statements
</li>
</ul>
Line 98 ⟶ 112:
</ul>
 
 
====Step 5: printing====
 
Write the code to print the valid words and their scores, in order by score.
 
===Checking your work===
Line 119 ⟶ 129:
<pre>
$ python scrabble.py ZZAAEEI
22 ,zeze
21 ,ziz
12 ,zee
12 ,zea
11 ,za
3 ,aia
2 ,ee
2 ,ea
2 ,ai
2 ae,aa
2 aa,ae
</pre>
 
===Bonus challenge===
 
===Congr!===
 
You've implemented a substantial, useful script in Python from scratch that is perfect for cheating at Scrabble or Words with Friends. Keep practicing!
 
[[File:Fireworks.png|150px]]
[[File:Balloos.png|150px]]
Anonymous user