Wordle is a perfect example of nerd sniping, I couldn't stop playing once I started. But I wanted to challenge my friends to some more difficult puzzles and wrote a tiny tool this weekend to do just that! You can create your own Wordle-like puzzles on https://word.rodeo I've already received a ton of positive feedback from friends. What are your thoughts?
It's not copying the URL to my clipboard, would it be possible to expose the url as text so manual copying can be done?
Solving Wordle in 3.64 guesses on average, 99.4% of the time
61–70 of 181 posts
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#62See also Absurdle, an adversarial Wordle that is designed to be as difficult as possible: https://qntm.org/files/wordle/ I won't spoil how it works, but click the "?" button on the page if you want to know.
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#63Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#64Wordle is a perfect example of nerd sniping, I couldn't stop playing once I started. But I wanted to challenge my friends to some more difficult puzzles and wrote a tiny tool this weekend to do just that! You can create your own Wordle-like puzzles on https://word.rodeo I've already received a ton of positive feedback from friends. What are your thoughts?
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#65You can solve it with grep and /usr/share/dict/words but where's the fun in that?
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#66This [1] solves it in 3.4212 average guesses 100% of the time and claims optimality, which is 99% of the difficulty it seems. For the limited 2671-word set of possible words, I think the question is now settled (for the whole 12k-word set, I don't think anyone tried anything). It was posted here four days ago [2]. [1] http://sonorouschocolate.com/notes/index.php?title=The_best_... [2] https://news.ycombinator.com/ite…
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#67You can solve it with grep and /usr/share/dict/words but where's the fun in that?
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#68Earlier quoted context omitted.
As a point of curiosity, what do you mean by optimal? To me, I can see at least two (potentially different) cost functions that a Wordle strategy can aim to minimise. Firstly, you can try to minimise the expected number of guesses, and secondly you can try to minimise the expected number of guesses conditional on never losing the game. In principle you could optimise for the first but not the second by allowing a sma…
Funnily enough, I think neither of those notions are the correct thing to optimize. For me, you want to minimize the maximum number of guesses. This leads to an equilibrium. Otherwise, your opponent can just abuse your strategy.
If you don't care about optimizing the EV at all, the greedy tree already has the property you're interested in.
Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#69Re: Solving Wordle in 3.64 guesses on average, 99.4% of the time
#70Earlier quoted context omitted.
If you want to get really fancy, a full minimax solution is probably feasible without massive resources. Pretend it’s a two player game with one player guessing and the other player thinking of a potentially different word for each guess subject to the constraint of being consistent with all previous answers.
There is a wordle parody (absurdle) [0] that does exactly this. [0] https://qntm.org/files/wordle/