joshcalafell / WordSleuth-Android

An anagram and subword finder for Android
2 stars 0 forks source link

Write the crossword search method. #31

Closed joshcalafell closed 9 years ago

joshcalafell commented 9 years ago

I have thought about it and have the SQL query written, just need to make Java implementation and test it.

joshcalafell commented 9 years ago

It's easy to do this with SQL wild cards, if you know the placement of the wild cards. This one has no sub words, only anagram matches. It's for crosswords if someone wants to know what tes- produces. Results would be "test" "Tess"

joshcalafell commented 9 years ago

M-t-h would give "match"

joshcalafell commented 9 years ago

Done