3f65169f3a774467de31c62d3e9dfaa321e3762d
[wordplay-cdsw-solutions] / README.md
1
2
3
4
5 1) Find all words that start with 'a' and are 9 or more letters long.
6 2) What is the longest word that starts with a 'q'?
7 3) Find all words that end with 'nge'
8 4) You need a word to match the phrase "a**e*y". 
9 Are there any words that match?
10 5) Print *every other* word that matches the 
11 condition in (1) above.
12 6) Find the longest string where no character is used > 1 time.
13
14 Now we're going to start finding points! You can use scrabble.scores to get the scores for every letter.
15 But we're going to cheat: assume you have all the letters.
16 7) What is the most valuable word in the dictionary, and how much is it worth?
17 8) You want to match a word that starts with an 'a', has an 'e' in the 4th slot, and is no more than 7 characters long. What is the best word you can play?
18 (*) 9) Make a list that shows the most valuable word that starts with each letter.
19 Example:
20 a: 37
21 b: 47
22 c: 41
23 d: 36
24 .....
25

Benjamin Mako Hill || Want to submit a patch?