I am trying to come up with a better approach than the "brute force" method, but am at somewhat of a loss.
Here is a simple case:
Given a finite number of pre-chosen letters, and a hatch (like a crossword overlap) I am attempting to find all combination of words that can be used. (Words are retrieved from a dictionary database.)
Example:
Given the letters:
a,c,r,e,t,u,p,l,m,o
how many combinations of words can fit in the following crossword puzzle?
_
_ _ _ _
_
_
_ _ _
One example:
c
t r e e
e
e
p o t
Of course the search time increases dramatically with each letter or addition to the crossword hatch. Any suggestions for a better way to search?
sed 's|/.*||' /var/cache/postgresql/dicts/en_us.dict | egrep "^[acretuplmo]{3,5}$" | wcto 566 words in a first, rough cut. But I'm curious: you're using 4 timese, but noaat all. Is this alright? – user unknown Sep 9 '11 at 2:23