79544202

Date: 2025-03-30 05:09:11
Score: 0.5
Natty:
Report link

If you are doing this to solve Wordle puzzles, you are lacking the additional constraints that would arise if you've guessed a word that has some letters that must be present but are not in the right place. Here is a piped command line that applies all the known constraints as an example (this is for Windows cmd.exe, modify as needed for Linux or MacOS command syntax):

grep -E "^[a-z]{5}$" c:\bin\words.txt | grep "pr.[^i]." | grep -v [outyase] | sed "/i/!d"

Explanation:

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Russ Jones