Monday, October 1, 2012

Puzzle Pal: Substring extractor

I was at BANG 33 yesterday, and one of the puzzles involved extracting words out of other words. We did the extraction by hand at the game, but today I set down at my desk and added a substring extractor to Puzzle Pal.

While I was at it, I also bundled the wordlist into the main app, and updated the UI to use action bar.

If you find Puzzle Pal useful, please review it on Google Play. You can also leave a comment here if you have ideas for other solvers and decoders.

Happy puzzling!

2 comments:

Inline coding questions will not be answsered. Instead, ask on StackOverflow and put the link in the comment.

  1. > ideas for other solvers and decoders.

    FWIW, I was expecting the substring matcher to find "string" in "strobing". E.g., I was expecting it to use the regexp s?t?r?o?b?i?n?g?

    ReplyDelete
    Replies
    1. I was using the definition of substring from Java, so it extracts a consecutive subsequence of letters.

      Delete