SearchWiki:
  5 User(s) Active on Site
  232 Wiki Pages

Most Recently Modified

Meeting Schedules

Club Resources (edit)

How This Wiki Works

Meeting space complements of:
Computer books
            and technical books at discount prices
Check them out; they are a great source of technical books at very good prices!

If you have shopped at Nerdbooks.com, help them out by reviewing them at ResellerRatings.com. You will need your invoice number to prove you are a real customer, and not just ballot stuffing.
Recent Changes Printable View Page History Edit Page
Content Last Modified on November 14, 2006, at 01:02 PM CST

Programming Challenges

Wordsearch

Here's a programming challenge for you to try.

Task: Write python functions to read in a file containing a dictionary (unique words, one per line) and to find all words in the dictionary that

  1. start with a letter
  2. end with a letter
  3. contain a letter

You will need to be able to benchmark your search functions.

I have a word list with 60000 entries if anyone needs sample data.

Some example code can be found at https://python.taupro.com/repo/Projects/challenges/

Word ladder

In a word ladder puzzle you have to change one word into another by altering a single letter at each step (not by changing the number of letters). Each step on the word ladder must be a valid word. Some Ladders only have a top and bottom clue. This type of puzzle was invented in 1878 by Lewis Carroll, the author of Alice in Wonderland.

Recent Changes Printable View Page History Edit Page