Community Data Science Course (Spring 2015)/Day 3 Coding Challenges: Difference between revisions

From CommunityData
(Created page with "==Ideas for exercises== * Find and print the words that start with "ee". * Find and print the words that end in "mt". How about "gry"? * Find and print the longest word that...")
 
No edit summary
 
Line 1: Line 1:
==Ideas for exercises==
Each of the challenges this week will ask you to modify and work with code in the [[Wordplay]] project which you should have installed and begun working with in class.


* Find and print the words that start with "ee".
As always, it's not essential that you solve or get through all of these — I'm not grading your answers on these. That said, being able to work through at least many of them is a good sign that you have mastered the concepts for the week. It is always fine to collaborate or work together on these problem sets. The only thing I ask is that you do not broadcast answers before Sunday at midnight on Canvas.
* Find and print the words that end in "mt". How about "gry"?
 
* Find and print the longest word that has no vowels.
== Challenges ==
* Find an print the words that contain 4 or more 'l's.
 
* Find and print the words that have all 5 vowels in alphabetical order.
Challenges about finding words:
* Look for other interesting properties of English words in pages like this quiz asking to find [http://www.sporcle.com/games/imabanana/uncommonwords English words with unusual properties]. How many can you solve with Python?
 
# Find all words that start with 'a' and are 9 or more letters long.
# What is the longest word that starts with a 'q'?
# Find all words that end with 'nge'
# You need a word that matches "a*ey" (here "*" means any letter). Are there any words that match?
# Print every other word that matches the condition in (1) above.
# Find the longest string where no character is used > 1 time.
 
Now we're going to start finding points! You can use scrabble.scores to get the scores for every letter. But we're going to cheat: assume you have all the letters.
 
# What is the most valuable word in the dictionary, and how much is it worth?
# 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?
# Make a list that shows the most valuable word that starts with each letter. Example:
 
a: apophthegmatize, 37
c: chiquichiquis, 41
b: bezzazzes, 47
e: embezzlements, 37
d: decitizenizing, 36
.....

Latest revision as of 19:12, 13 April 2015

Each of the challenges this week will ask you to modify and work with code in the Wordplay project which you should have installed and begun working with in class.

As always, it's not essential that you solve or get through all of these — I'm not grading your answers on these. That said, being able to work through at least many of them is a good sign that you have mastered the concepts for the week. It is always fine to collaborate or work together on these problem sets. The only thing I ask is that you do not broadcast answers before Sunday at midnight on Canvas.

Challenges[edit]

Challenges about finding words:

  1. Find all words that start with 'a' and are 9 or more letters long.
  2. What is the longest word that starts with a 'q'?
  3. Find all words that end with 'nge'
  4. You need a word that matches "a*ey" (here "*" means any letter). Are there any words that match?
  5. Print every other word that matches the condition in (1) above.
  6. Find the longest string where no character is used > 1 time.

Now we're going to start finding points! You can use scrabble.scores to get the scores for every letter. But we're going to cheat: assume you have all the letters.

  1. What is the most valuable word in the dictionary, and how much is it worth?
  2. 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?
  3. Make a list that shows the most valuable word that starts with each letter. Example:
a: apophthegmatize, 37
c: chiquichiquis, 41
b: bezzazzes, 47
e: embezzlements, 37
d: decitizenizing, 36
.....