lpetrich
Contributor
The New York Times has a Games section: The Crossword- The New York Times with:
I confess that I cheat. The NYT's full-scale crossword puzzles are hard for me to do without a *lot* of online searching for what might satisfy some of its clues. In the process, I found some sites that specialize in answers for crossword-puzzle clues. I sometimes do that with the minipuzzles, but I rarely have to do that.
I'm cheating in another way. I've written some word-game assistants as programs on my computer. I've written them in both Python/TK and Swift/Cocoa, and they both use a BSD-Unix dictionary file of words. The assistants work by finding all the words that satisfy the puzzles' constraints. Like for Spelling Bee, every word that contains only the seven letters that one enters, with one mandatory and the other six optional.
One can get a games subscription to do more of the puzzles, but I haven't thought it worth the money.
- A full-scale crossword puzzle
- A miniature crossword puzzle
- Wordle - find a word by guessing it and using clues supplied for each guess - a letter is either present in the right place, present elsewhere, or absent.
- Spelling Bee - find all words that contain any of 7 letters, where one letter must be present. Letters can be repeated.
- Letter Boxed - a square with three letters on each side, and one makes words by going from letter to letter. The last letter of each word becomes the first letter of the next word.
- Tiles - a grid with each cell having some overlapped artwork. Start at one and move to another one that shares an artwork, and repeat until one can no longer do that. At each step, the shared artworks are removed.
- Vertex - connect the dots to reveal some artwork. Each dot has a number of connections and as parts of the artwork are surrounded by correct connections, they are revealed.
I confess that I cheat. The NYT's full-scale crossword puzzles are hard for me to do without a *lot* of online searching for what might satisfy some of its clues. In the process, I found some sites that specialize in answers for crossword-puzzle clues. I sometimes do that with the minipuzzles, but I rarely have to do that.
I'm cheating in another way. I've written some word-game assistants as programs on my computer. I've written them in both Python/TK and Swift/Cocoa, and they both use a BSD-Unix dictionary file of words. The assistants work by finding all the words that satisfy the puzzles' constraints. Like for Spelling Bee, every word that contains only the seven letters that one enters, with one mandatory and the other six optional.
One can get a games subscription to do more of the puzzles, but I haven't thought it worth the money.