|
This is great! A few days ago, I wrote a Wordle solver in C. It selects a word to minimize the number of words assuming the worst-case green/yellow. So, it sounds like these two are in direct conflict. My solver is deterministic, and it looks like the adversarial is too, so they always play the same game: S E R A I (0 green, 0 yellow, 429 words remain)
M O L D Y (1 green, 0 yellow, 35 words remain)
C E N T U (0 greem, 2 yellow, 2 words remain)
V O U C H (4 green, 0 yellow, 1 word remains)
P O U C H (5 green, 0 yellow, 0 words remain)
|
Could you say more how you've determined your solver to be deterministic in 6 steps?
Also, I'm not sure I understand what this means:
> It selects a word to minimize the number of words assuming the worst-case green/yellow.
Particularly the part "assuming the worst-case green/yellow". Do you mind elaborating?