- 22,819
- 14,875
To add to the above: I compute the pattern id for all remaining words for each guess. Then I keep only those words that match the pattern result for all guesses in the analysis.
The analysis then computes the pattern for guessing each remaining word for the case when each remaining word is the solution. This results in a list of which patterns are possible for each guess and how many remaining words would result in each pattern. It is this information that I then do math magic on to score each remaining word based on how many words are expected (or rather, the expected logarithm of the number) to remain after guessing that word.
The analysis then computes the pattern for guessing each remaining word for the case when each remaining word is the solution. This results in a list of which patterns are possible for each guess and how many remaining words would result in each pattern. It is this information that I then do math magic on to score each remaining word based on how many words are expected (or rather, the expected logarithm of the number) to remain after guessing that word.
