TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Best Wordle guessing strategy

143 pointsby splchover 3 years ago

52 comments

MauranKilomover 3 years ago
It seems clear to me that there is an optimal starting word, but that the best second word has to depend on the info you gain from the first.<p>Case in point: If you get 3 green 2 yellow in the first word, you can solve on the next guess.<p>Of course, you can constrain your strategies to &quot;I always use the same two&#x2F;three starting words&quot;, and in many cases that will be fine. But it&#x27;s quite obviously not optimal.<p>Also, the optimal strategy must depend on your goal metric. Do you go for &quot;least average guesses&quot;, &quot;least maximum guesses&quot;, or &quot;least average guesses while never losing&quot;? There&#x27;s lots of unstated assumptions in all the analyses thrown around...
评论 #29929233 未加载
评论 #29929026 未加载
评论 #29929629 未加载
christiangencoover 3 years ago
I modeled my Wordle solver[1] after Donald Knuth&#x27;s Mastermind strategy[2].<p>An optimal guess is found by looking at the list of possible solutions and for each of those possible solutions checking how much each possible guess would narrow down the list of possible solutions.<p>Once you have a list of all possible guesses and how much each of those possible guesses would narrow down the total number of possible solutions for each possible solution, sort them by the maximum number of total remaining guesses.<p>The optimal first guesses from my solver are ARISE, RAISE, AESIR, REAIS, or SERAI because each will narrow down the possible word list to <i>at minimum</i> 168 remaining words.<p>Each guess after that uses the same algorithm with the list of possible guesses filtered with the information you learned in previous guesses.<p>edit: formatting<p>1. <a href="https:&#x2F;&#x2F;wordlesolver.com" rel="nofollow">https:&#x2F;&#x2F;wordlesolver.com</a> source: <a href="https:&#x2F;&#x2F;github.com&#x2F;christiangenco&#x2F;wordlesolver" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;christiangenco&#x2F;wordlesolver</a><p>2. <a href="https:&#x2F;&#x2F;math.stackexchange.com&#x2F;questions&#x2F;1192961&#x2F;knuths-mastermind-algorithm" rel="nofollow">https:&#x2F;&#x2F;math.stackexchange.com&#x2F;questions&#x2F;1192961&#x2F;knuths-mast...</a>
评论 #29947881 未加载
评论 #29930517 未加载
评论 #29930606 未加载
Syzygiesover 3 years ago
<p><pre><code> 5.291 soare 5.294 roate 5.299 raise 5.311 raile 5.311 reast 5.321 slate 5.342 crate 5.342 salet 5.345 irate 5.346 trace 5.356 arise 5.360 orate 5.370 stare 5.382 carte 5.390 raine 5.400 caret 5.402 ariel 5.406 taler 5.406 carle 5.407 slane </code></pre> Shown are the twenty best initial guesses using Claude Shannon&#x27;s definition of information entropy. Each number is the expected number of yes&#x2F;no questions needed to resolve the remaining uncertainty. Shannon is the &quot;father of information theory&quot;, and this is the right measure.<p>One might recognize SOARE as identified elsewhere by a different measure. I am relieved that I give up very little by moving down to the first word I recognize on this list.<p>This takes about 20 minutes to code in Ruby, and four minutes to run. There&#x27;s no point to using a more efficient language, or wasting part of an hour as I did searching for a clever way to score guess words.<p>In the 1960&#x27;s my dad used entropy to program Jotto on Kodak&#x27;s computers. It wasn&#x27;t feasible then to evaluate every possible clue word, but he determined that one did well enough with a random subset.
评论 #29953589 未加载
评论 #30041950 未加载
评论 #30041473 未加载
评论 #29963749 未加载
评论 #29940264 未加载
评论 #29974320 未加载
评论 #29930733 未加载
paxysover 3 years ago
I don&#x27;t like the &quot;exploration&quot; strategy of playing Wordle. Once you have a start word, work onwards from there (aka &quot;hard mode&quot;) rather than enter another random guess to narrow down more letters. I know it is a valid strategy, but idk just feels like cheating to me.
评论 #29929703 未加载
评论 #29930398 未加载
评论 #29928962 未加载
评论 #29932599 未加载
评论 #29928882 未加载
评论 #29928827 未加载
colinmsaundersover 3 years ago
Fight your wordle bot at <a href="https:&#x2F;&#x2F;botfights.io&#x2F;game&#x2F;wordle" rel="nofollow">https:&#x2F;&#x2F;botfights.io&#x2F;game&#x2F;wordle</a>
评论 #29930402 未加载
评论 #29929162 未加载
biesneckerover 3 years ago
Over the weekend I wrote a tool to help me figure this out: <a href="https:&#x2F;&#x2F;github.com&#x2F;biesnecker&#x2F;wordlesmith" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;biesnecker&#x2F;wordlesmith</a><p>Wordle&#x27;s wordlist is interesting. There is a large (~10,000 words) list of words that it will accept as guesses but that will never be the answer, and a much smaller (~2500 words) list of words it will both accept and could be the answer.<p>My tool&#x27;s simple algorithm scores words by taking the product of the frequency with which each of its letters appears in the wordlist multiplied by the frequency that the letter appears in that specific spot. When looking at the entire list of words the top five choices are:<p>1. tares 2. lares 3. cares 4. pares 5. dares<p>However, if you just look at the words that could be answers (which I what I&#x27;ve decided to do), the list changes to:<p>1. soare 2. saine 3. slane 4. saice 5. slate<p>In either case I&#x27;ve never had a puzzle where repeatedly choosing the first suggested word didn&#x27;t get me to the answer in six or fewer guesses.
评论 #29928715 未加载
评论 #29931053 未加载
评论 #29928760 未加载
评论 #29929171 未加载
babyover 3 years ago
I refuse to read this post because I&#x27;m enjoying this slow, daily, little game. I&#x27;m convinced over-thinking this would spoil the game.
评论 #29934351 未加载
andrewingramover 3 years ago
I prefer to minimise vowels in early guesses, because I find i&#x27;m good at filling in the blanks between consonants, but not the other way around.
less_lessover 3 years ago
I also tried to make a wordle solver, this one just using full brute force to find a strategy that minimizes the maximum number of guesses, and then secondarily the expected number of guesses. The solver tries guesses in a heuristic order, and prunes solutions once they&#x27;re clearly worse than a previously-found solution, but it eventually should find the global optimal strategy.<p>I didn&#x27;t entirely succeed due to the obvious exponential runtime, but I tried a couple constraints: using only words in the dictionary of possible answers; hard mode; or &quot;harder mode&quot; where all guesses must be consistent with the information you have. (The actual hard mode is a weaker constraint, but I misinterpreted it as &quot;harder mode&quot; at first.) Harder mode is of course much easier to brute force, because there are fewer options.<p>Anyway I tried on several tuples: (max guesses, mode, dictionary size). What I found:<p>- (4, harder, large): no solution.<p>- (4, normal, small): no solution.<p>- (4, normal, large): didn&#x27;t finish after like a day, but no solution found.<p>- (5, harder, small): this is pretty hard to guarantee a win; best starting word is SCAMP (-FLOUT-DEIGN if no hits).<p>- (6, harder, small): best staring word is PLATE (-CHURN-MOODY-SKIFF if no hits).<p>- (5, normal, small): didn&#x27;t finish; best starting word so far is TRACE (-GODLY-SPUNK if no hits).<p>- (5, harder, large): didn&#x27;t finish; best starting word so far is PALET.<p>- (6, harder, large): didn&#x27;t finish; best starting word so far is SALET.<p>Hard mode really is hard. There are lots of clusters with many options, such as &#x2F;.OUND&#x2F;, &#x2F;.IGHT&#x2F;, &#x2F;.ASTE&#x2F;, &#x2F;S.ORE&#x2F; etc. You can easily end up matching a cluster without enough freedom to solve it in time, especially if you start with common letters.<p>It isn&#x27;t possible to guarantee a hard mode win by starting with with e.g. RAISE, because if you get e.g. RS in yellow and E in green, then you have 6 remaining words matching &#x2F;S.ORE&#x2F; (plus 4 others), and you can&#x27;t deal with more than one consonant per guess. Starting with TRACE is even worse: you can&#x27;t even guarantee a win in 7 guesses due to the cluster &#x2F;.ATCH&#x2F;.
thurnover 3 years ago
I also did this and also got AEROS&#x2F;UNLIT (well, AROSE&#x2F;UNTIL in my case). You&#x27;ve made the same minor error I did of looking at the frequency distribution of all <i>guessable</i> wordle words, not the smaller list of <i>possible answers</i>, which has a different frequency distribution. If you look at that you get ORATE&#x2F;LYSIN as the best starting pair (based on frequency only, not considering position)
评论 #29933311 未加载
hddqsbover 3 years ago
Interesting post, but the premise is misleading. The title says &quot;Best ... strategy&quot; and the first sentence reads &quot;This post will derive an optimal ... strategy&quot;, but there is nothing to suggest that this strategy is optimal.<p>One strategy which is obviously optimal is to use minimax (recursively, not like Knuth&#x27;s Mastermind strategy which was mentioned by @christiangenco), however this strategy is not computationally feasible.<p>---<p>Aside: There is something broken with this site&#x27;s history manipulation. When I open the blog post it creates <i>two</i> entries in the history list, and clicking the browser&#x27;s back button takes me to a page with the same URL as the blog post that displays &quot;Error Page Not Found&quot;.
评论 #29936000 未加载
评论 #29936646 未加载
评论 #29933442 未加载
评论 #29933502 未加载
ledauphinover 3 years ago
I did some work on this as well.<p>One thing I think this analysis seems to be missing is taking into account letter position within the word set. If you take that into account, it actually shifts the first guesses, since you&#x27;re far better off to discover a green square than a yellow one.<p>There are some pretty weird words that pop up if you do this analysis, so I&#x27;ve settled on some that are slightly suboptimal but won&#x27;t make me feel like a robot every day.<p>I will say that &quot;cares&quot;, in my analysis, is a significantly better option than the author&#x27;s suggestion of aeros, because &quot;e&quot; is more common in position 4 than in 2, and a is much more common in position 2 than 1.
评论 #29928763 未加载
AnotherGoodNameover 3 years ago
You could probably have fun with<p>Player 1) create a predictable process that can guess wordle words<p>Player 2) given the full code of 1 find a word that will not be found by that process in 6 steps<p>The game is over if someone can decide a process that catches all valid 5 letter words in 6 steps.
评论 #29933146 未加载
mmmrtlover 3 years ago
Or maximize entropy: <a href="https:&#x2F;&#x2F;twitter.com&#x2F;quantian1&#x2F;status&#x2F;1480337678281363461" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;quantian1&#x2F;status&#x2F;1480337678281363461</a>
评论 #29928743 未加载
Jeddover 3 years ago
A friend wrote up a post a couple of weeks ago about solving Wordle with python:<p><a href="https:&#x2F;&#x2F;poetix.medium.com&#x2F;playing-wordle-with-python-6750185ac168" rel="nofollow">https:&#x2F;&#x2F;poetix.medium.com&#x2F;playing-wordle-with-python-6750185...</a><p>I note that a very recent Wordle game used the same letter twice, rudely negating one of his otherwise quite reasonable assumptions there.
评论 #29930543 未加载
lucideerover 3 years ago
I&#x27;ve spoken to a lot of people who say they take this &quot;exploration&quot; strategy, but I think it misses the human language element of deduction.<p>I&#x27;ve been playing Wordle for a while and while I&#x27;m no wordsmith, if you take an analytical strategy to word selection from line 2 onward it&#x27;s never that difficult to get 3&#x2F;6 (which I presume is the highest score attainable without significant luck).<p>English is one of the most irregular languages, with so many influences and variations, but it still has structure and common patterns. Once you have knowledge from a well selected exploratory 1st line, there&#x27;s a lot you can deduct about potential variants in the word structure of the answer to make an informed 2nd line choice that&#x27;ll be dual purpose: both being a good exploratory word and also a reasonably hopeful lucky guess.<p>Afterall, if you&#x27;re aiming for 4&#x2F;6 you&#x27;re not really aiming very high.
评论 #29931083 未加载
ricardobeatover 3 years ago
This strategy optimizes for figuring out all the letters that are used in today’s word. But that’s not the goal of the game, it’s finding <i>one</i> word in particular. Those sound similar but are not.<p>In the example given, the first guess already told you there is an E, but then it’s not used in the next guesses. Figuring out the position of that letter, instead of trying to find a third one, will <i>massively</i> reduce your search space, I’m sure someone can do the math on this being more beneficial.<p>Yesterday I got one green one yellow in the first guess, and got the word in three steps from there. There are very few words that could fit after those two letters + all the excluded ones. You literally just iterate through the alphabet and possible words in your head while excluding the gray letters.<p>EDIT: just did today in 4 guesses again using this approach. Lucky streak?<p>My starting word is BACON.
评论 #29932709 未加载
csoursover 3 years ago
Using only my memory of Wheel of Fortune default letters, I use<p>ARTSY MODEL CHUNK<p>They may not be the best words in the world, but I thought of them, so they are best to me.
YossarianFrPrezover 3 years ago
It&#x27;s interesting to think about optimal starting words, as some people might be more prone to thinking in terms of phonemes (&quot;th&quot;, &quot;ed&quot;, &quot;sl&quot;) rather than individual letters. For this and other reasons, I imagine cognitive scientists would also be interested in the Wordle play data, as they can look to see which hypothesis testing strategies people people use over the course of game.<p>Also, one version of Wordle people can play is to pick the best starting word every time, another involves starting with a different word every time.
jlynnover 3 years ago
Two things I&#x27;ve wanted to explore with Wordle:<p>1. Some sense of &quot;par&quot;. Can you crawl twitter for everyone&#x27;s solution tweets and get a sense of the average guesses for the day? 2. &quot;Unwordle&quot;. For people who follow the hard-mode rules, how far can you get deciphering their guesses based on their shared color grid? Could you make it competitive between friends to see how well you can guess each others guesses? Would that encourage more creative guesses to trick your friends?
jonathankorenover 3 years ago
I made my own Wordle solver recently that uses frequency analysis of letters and bigrams of five letter English words as a scoring function. It works fairly well.<p>Someone in this discussion suggested using frequency analysis at position, which seems interesting, especially when trying to locate misplaced letters. I might have to try that.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;jonathankoren&#x2F;wordle-solver" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jonathankoren&#x2F;wordle-solver</a>
评论 #29929182 未加载
wizofausover 3 years ago
FWIW, I just had a game where these were my guesses:<p>IRATE SOUND PLUMB FOUND (the answer)<p>In fact I nearly always play &quot;SOUND&quot; after &quot;IRATE&quot;, even if I know it can&#x27;t be correct, and in this case I knew PLUMB couldn&#x27;t be correct - after the 2nd word I knew it was -OUND, but there are a lot of words ending in -OUND, so I wanted to eliminate as many as possible in the next move. PLUMB would either eliminate or indicate POUND MOUND or BOUND as the solution, and once it did the former, it was either FOUND HOUND WOUND, and I got lucky. In fact I should have played WHOMP which would have given me a better chance (given LOUND is not a word). In this sense the game is somewhat different to the coloured peg game &quot;Mastermind&quot;, where there&#x27;s no benefit in making a guess that can&#x27;t possibly be correct.
aghilmortover 3 years ago
Experimented with goal-based strategies last weekend:<p>- least time - fewest moves - fewest unique letters - etc.<p>Most interesting to me was solving in the least time and having fixed words to maximize letter coverage, which theoretically was 25&#x2F;26 letters during first five guesses. Access to such a list would make it such that the goal is given those words, can we find the answer in less than some fixed time, e.g., one minute from start to finish.<p>Further interesting was attempting to find such a list without computer assistance, short of having access to word lists and filters, which ultimately led to a near optimal list of words for the first five moves with 24&#x2F;26 letters:<p>** spoiler -&gt; the (5) seed words are located at <a href="https:&#x2F;&#x2F;pastebin.com&#x2F;D1DkzXA4" rel="nofollow">https:&#x2F;&#x2F;pastebin.com&#x2F;D1DkzXA4</a> -- the password is gTgRCFrLYL<p>The &#x27;a&#x27; is notably repeated, and worse, is in the same position; was planning to run a computer search to (1) explore if a perfect solution of five dictionary words with entirely unique letters exists &amp;&#x2F;or failing (1), then (2) is there a list with 24&#x2F;25 unique letters or 1-2 repeated letters s.t. all letters are in different positions.<p>There are of course places where such a set of words with fairly maximal coverage still falls short -- a nearly so example is the word pair UNLIT and UNTIL. Determining how many such combos that might be nondeterministic with such a fixed set of starting words exist in the dictionary would be good if someone wanted to dig deeper, e.g., {ARISE, RAISE, AESIR, REAIS, SERAI} which was cited in another comment.
Imnimoover 3 years ago
I think there are two natural optimization criteria.<p>One is to try to maximize the expected information gain of your guess. If we have an initial set of 128 possible words, we begin with log2(128) = 7 bits of entropy. When we make a guess and receive a response, we narrow down the list of words to the set compatible with that response. If, for example, there are 32 words compatible with our response, then we now have log2(32) = 5 bits of entropy, and our guess was worth 2 bits. For a given guess, there are many possible replies each with its own information gain - in the best case, we get all greens, and are left with 0 bits of uncertainty (for a gain of 7), while in other cases we may get all greys, and learn comparatively little. Further, each reply has its own probability of occurring - all greens is only 1&#x2F;128, but other replies might be more likely if there are several possible targets that would generate the same reply. Thus, we weight the information gain of each reply by its probability to arrive at the expected information gain for that guess. For the word list provided in the article, I get TARES as the best first guess by this metric.<p>The second strategy is to continue down the game tree, and find the guess with the lowest number of expected (or alternatively the lowest worst-case) number of guesses. In principle, we might find that while TARES gains us a lot of information as a first guess, it leaves us without a good second guess (since we are restricted to guessing real words, and those words might all be redundant in some way), and thus our total expected number of guesses is larger than if we had taken a slightly less informative first guess. My hunch is that in practice this sort of situation is unlikely to occur, and the best first guess by this metric is probably similar to that of the first metric, although I haven&#x27;t tried.
oli5679over 3 years ago
If it wasn&#x27;t for the 6-guess limit and you had a vocabulary, then you could use minimax to try and minimize the maximum number of guesses.<p>E.g. assuming you make the best possible future guesses but your opponent has chosen the least convenient word and propitiating up these minimum and maximums.<p>I am trying to think if this can be tweaked?
handmodelover 3 years ago
I really like the &quot;hard&quot; version of Wordle better where you can only guess clues which make sense given the clues. It seems more in the spirit and although there may be 26 ideal starting words it would be very hard to memorize the set list of words that could be the best guesses as a result.
not2bover 3 years ago
I&#x27;ve picked a first word with the most common letters (ATONE for example), then do a grep on the &#x27;enable1&#x27; word list (the one that a number of word games use) to exclude all &#x27;impossible&#x27; words. The second word is chosen to have many common letters not in the first word but also matching any constraints. Then I do another filter; often by the 3rd guess there are fewer than 100 possibilities left. I then choose the word that seems the most common, because Wordle often chooses relatively common words as the answer, I haven&#x27;t seen an obscure word picked yet. I&#x27;ve gotten it in three this way a couple of times, and if not, repeating the grep pipeline often leaves only a few words for the fourth guess.
petercooperover 3 years ago
Like many, I spent some time thinking about this, and realized if I could analyze the words used so far, I could find some patterns. For example, the creator might not ever use plurals meaning RATES might not be such a helpful starting word with the S.<p>So I Googled the last several solutions to find such a list and instead I found... a gist where someone had reverse engineered the game and put up a list of every solution, <i>including for the next several months.</i> On the plus side, I now don&#x27;t spend time on the game.. but this is perhaps a warning to not go down the rabbit hole yourself if you want to keep playing ;-)
评论 #29932964 未加载
评论 #29932942 未加载
vpleover 3 years ago
I also wrote a tool for playing: <a href="https:&#x2F;&#x2F;github.com&#x2F;vple&#x2F;wordle-solver&#x2F;blob&#x2F;main&#x2F;solver.js" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;vple&#x2F;wordle-solver&#x2F;blob&#x2F;main&#x2F;solver.js</a><p>There&#x27;s probably more tuning I can do for the algo, but roughly:<p>- I took all the words from the site&#x27;s js as the dictionary.<p>- From remaining eligible words, compute the letter distribution (ignoring letters you already know are in the solution).<p>- Pick a word that uses as many of the most frequent letters as possible.<p>- Use one of those as a guess.<p>The goal is essentially to greedily reduce the remaining candidate words as much as possible per guess.
评论 #29929226 未加载
manuwover 3 years ago
Yesterday I had fun to find out what&#x27;s the best &quot;opener&quot; for Wordle. I wrote quickly something about it here[0] and here[1]. Looks like &quot;irate&quot; is a good opener.<p>[0] <a href="https:&#x2F;&#x2F;dev.to&#x2F;mnlwldr&#x2F;opener-for-wordle-11k0" rel="nofollow">https:&#x2F;&#x2F;dev.to&#x2F;mnlwldr&#x2F;opener-for-wordle-11k0</a><p>[1] <a href="https:&#x2F;&#x2F;twitter.com&#x2F;mnlwldr&#x2F;status&#x2F;1481678410854412289" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;mnlwldr&#x2F;status&#x2F;1481678410854412289</a>
Kiroover 3 years ago
Always trying a new first word every day makes it much more fun imo. I love sitting with a blank Wordle and just let my mind try to settle on a random 5-letter word from my subconscious.
评论 #29933668 未加载
WhiteOwlEdover 3 years ago
I feel the best strategy to win at Wordle would be to see if someone already posted the answer.<p>If no answer, use reliable hints ( i.e on Twitter) to better inform the initial guess.<p>Beyond that, the best initial word goes beyond information theory, letter frequency, etc to also be a word that has a realistic chance of being word of the day. As a trivial example, AEIOU may reveal some information on the first guess, but I find it extremely unlikely that you will win Wordle in 1 with this guess.
评论 #29929152 未加载
meterplechover 3 years ago
I built a command line wordle solver that provides an updated best guess as the game progresses and you learn more. Right now it&#x27;s just based on word frequency, but working to add more.<p>Also added a command line version of wordle in case you want to play more and practice and a simulator I&#x27;m using now to explore optimal strategy more.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;jkatzur&#x2F;wordle-solver" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jkatzur&#x2F;wordle-solver</a>
plankover 3 years ago
Seems that another thing to consider is multiple usages of same letter. Eerie for instance. So if the first try gets a single letter, this does not immediately mean that one should not try multiple letters.<p>Considering that eg the letter e is used very frequently, one might try words with more the one e, for instance? Off course this does not mean that I have a different, best strategy, only that it might be more complicated.
tobinfrickeover 3 years ago
Yet another Wordle solver!<p><a href="https:&#x2F;&#x2F;github.com&#x2F;nikitaborisov&#x2F;autowordl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;nikitaborisov&#x2F;autowordl</a><p>We choose the guess that is expected to result in the smallest set of possible solutions after one guess.<p>For the secret answer &quot;QUERY&quot; it suggests the following sequence of guesses:<p>1. LARES<p>90 possible answers after this guess.<p>2. GROUT<p>Only four possibilities now: [&#x27;ENURE&#x27;, &#x27;INURE&#x27;, &#x27;QUERY&#x27;, &#x27;QUIRE&#x27;]<p>3. BRIBE<p>This narrows the field down to one possibility:<p>4. QUERY
评论 #29933494 未加载
评论 #29929573 未加载
carderneover 3 years ago
I did something similar including third guesses, but got bored before including letter positions. I included a whole bunch of words in case anyone wants to mix it up each morning. [0]<p>The main problem I think is that the words certainly aren’t chosen purely randomly, so the actual letter frequency could be completely different…<p>[0] <a href="https:&#x2F;&#x2F;rdrn.me&#x2F;wordle&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rdrn.me&#x2F;wordle&#x2F;</a>
IMAYousafover 3 years ago
I personally always start with the word OUIJA.<p>From there it&#x27;s simple to rotate if any of the vowels get picked up into words with common non-vowels like S and T etc.<p>If no vowel appears out of OUIA, I always go for a word like STREP.<p>Becomes relatively trivial from there.<p>Today (01&#x2F;13&#x2F;2022) the word was ABBEY.<p>I&#x27;ll represent GREEN squares with * and GREY squares with ^<p>It went as follows:<p>OUIJA^ B^E^A^ST FA^B*LE^ ABBEY<p>After FABLE, the first word I could think of that had at least 1 A, at least 1 B, and at least one E was ABBEY.
Adrockover 3 years ago
I computed the Pareto optimal frontier of initial Wordle guesses, showing the tradeoff between maximizing green squares and maximizing yellow squares in this thread: <a href="https:&#x2F;&#x2F;twitter.com&#x2F;adereth&#x2F;status&#x2F;1478435989982875648" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;adereth&#x2F;status&#x2F;1478435989982875648</a>
评论 #29931014 未加载
评论 #29929597 未加载
rckrdover 3 years ago
My contribution to the best-first guess on Wordle is a greedy algorithm that picks the word that eliminates the most solutions. [1]<p>[1] <a href="https:&#x2F;&#x2F;matt-rickard.com&#x2F;wordle-whats-the-best-starting-word&#x2F;" rel="nofollow">https:&#x2F;&#x2F;matt-rickard.com&#x2F;wordle-whats-the-best-starting-word...</a>
评论 #29930490 未加载
ipsinover 3 years ago
This strategy seems to avoid words that Wordle will accept, while not choosing them as word-of-the-day, e.g. SERAI.<p>If your goal is to minimize the number of remaining words in the worst case, I think SERAI is the winner, leaving you with at most 697 choices. [Assuming my code is right]
评论 #29929081 未加载
sg47over 3 years ago
My first two words are POINT and SHEAR though I&#x27;m going to change it to SNARE. This covers most of the vowels and frequently occurring letters. From then on it&#x27;s trying to guess the other consonants and the position of the letters.
kkcorpsover 3 years ago
I have been using - WORDS, CHIME, FAULT for the first 3 words. Eliminates all vowels. Then I either proceed to guess the correct position of letters if I have 2-3 yellows from the first 3, or proceed to eliminate consonants.
schappimover 3 years ago
If you&#x27;re looking for a source of words to build your own solver, you can find one in many *nixy distros (including macOS) here:<p><pre><code> &#x2F;usr&#x2F;share&#x2F;dict&#x2F;words</code></pre>
评论 #29933595 未加载
Mizzaover 3 years ago
What&#x27;s the opposite - a &quot;bongcloud&quot; for Wordle?
评论 #29930623 未加载
k2xlover 3 years ago
Do any bots incorporate the history of wordle words? Wordle never repeats previous words so I wonder if the “best Xth word to guess” could change at some point?
评论 #29930509 未加载
davidwover 3 years ago
“A strange game. The only winning move is not to play.”
评论 #29930824 未加载
yogrishover 3 years ago
Best start would be to start with a word with maximum VOWELS.(PIOUS,SAUTE etc). Next guess can be based on previous yellows&#x2F;greens.
评论 #29933348 未加载
natchover 3 years ago
I&#x27;m looking for the best strategy for guessing which Wordle app in the App Store is the real one.
评论 #29931913 未加载
pfootiover 3 years ago
Just use SWALE, it hasn&#x27;t done me wrong yet.
Madmallardover 3 years ago
I pretty much always start with stare
deepsquirrelnetover 3 years ago
I&#x27;m sure this is an application for Bayesian Inference, but I&#x27;m too uneducated to say anything more insightful than that.
mar_3104over 3 years ago
SPADE WROTH CLIMB FUNKY<p>Left:GJQVXZ