Skip to main content

Best and Worst Wordle Words

ยท 5 min read

Soare. noun. A young hawk. If you're here for the "best" first word to use in Wordle, there it is.

What is Wordle?โ€‹

Wordle is the word game craze that gained extreme popularity in January of 2021.

The game is pretty simple: guess a daily 5-letter word. You have six chances. If you guess incorrectly, the letters in your guess are highlighted green, yellow and gray:

  • Green indicates that the letter was correct, and in the right position

  • Yellow indicates that the letter appears in the word, but not in that position

  • All incorrect letters appear in gray

    Wordle screenshot

In this post, let's look at the best and worst words to start with in Wordle.

The Strategyโ€‹

Obviously some first guesses are better than others. Friends on Twitter or Facebook have recommended words like audio or rinse, since those contain very common letters. That makes sense - it's helpful to use words that yield a lot of yellow or green letters. A guess like xylyl (which is a real word!) will likely result in an all-gray, largely wasted guess and would only eliminate words that contain X's, Y's and L's.

So... what makes a good guess? In my opinion, a good guess not only gives you some correct letters, but eliminates the largest set of possible solutions. Good news! It turns out, those two goals (lots of correct letters and eliminates lots of possible solutions) go hand-in-hand - if you get a lot of correct letters, the number of remaining possible solutions becomes small.

Programming a Solutionโ€‹

If you look at Wordle's source code, you'll find two sets of words: possible solutions, and a dictionary of valid guesses you can make:

Words source code

For convenience I've posted the possible solutions (of which there are 2,315), and valid guess words (12,972 words) in a GitHub repo.

Bad code warning

Disclaimer: My code is terribly inefficient (like, O(n^3) bad). I'm sure there's a better algorithm involving graphs and trees that runs in O(n log n) or whatever, but this runs in a few hours so it's fine...

Next, I wrote up some code. My script went something like this:

for each guess:
for each possible solution:
- Compute the "green-green-gray-yellow-gray" pattern that this
guess and solution combination make
- Figure out how many possible solutions are still valid given
that pattern
- Record that number

That gives you an idea of how "good" each guess is for any given solution.

Once you have a set of numbers for each guess, figure out the average number of solutions that are eliminated by guessing some particular word. Depending on the guess, the data had a pretty hard right or left-skew, so in my opinion median best represents the "average" here. Given some solution, thus-and-such guess should yield about N remaining options for solutions.

The Resultsโ€‹

After letting my little Macbook churn on my script for 4 hours, I had results.

The top 10 best words to start out a game of Wordle are:

guessMedian words remainingMean words remainingStandard deviation
SOARE79.0219.75304.9
SAICE80.0232.78318.85
SAINE81.0230.17320.17
ARISE91.0254.45355.75
RAISE96.0236.61331.34
SANER99.0271.33372.04
RAINE102.0253.77349.27
SANTO105.0353.49464.29
SATIN105.0347.2465.33
SNARE105.0267.51370.77

And the 10 absolute worst words to start a game of Wordle out with are:

guessMedian words remainingMean words remainingStandard deviation
OXBOW2077.01286.12917.53
INFIX2041.01164.58900.65
IMMIX2037.01354.85873.22
ZIMBI2029.01195.57901.47
KUDZU2026.01272.01908.86
XYLYL2026.01275.45880.61
KIBBI2021.01252.12890.99
JUJUS2016.01308.01850.3
JUKUS2008.01203.18878.62
KUZUS2001.01186.9877.59

A full report is available here.

I mentioned that the data were skewed heavily right and left depending on what guess you had. Here's the histogram for soare:

soare histogram

You can see that for many solutions, guessing soare reduces the possible solutions from 2,315 to just a few dozen!