Betweenle Rules
Betweenle hides a secret word and tells you whether each guess falls alphabetically before or after it. The secret is that this is a binary search: every guess should cut the remaining alphabetical range roughly in half, not chase a hunch.
How the bounds work
Each guess updates an upper and lower bound. Guess a word and Betweenle tells you the answer is alphabetically higher or lower, tightening the window. Your job is to shrink that window efficiently.
Treating it like Wordle is the mistake. There are no letter-position clues, only ordering, so the skill is range management.
The binary-search strategy
Halving the range each turn means even a huge dictionary collapses in a handful of guesses. Guessing familiar words at random wastes the ordering information the game hands you.
Cut the range in half
- Start near the middle of the alphabet, around M or N words.
- After each result, guess a word near the midpoint of the new range.
- Pay attention to the first two letters; they carry most of the ordering.
- As the window narrows, shift to matching the third and fourth letters.
Closing the window
The final guesses are about precision: match as many leading letters as the bounds share, and the answer usually falls out within one or two tries.
Let the bounds pick the word
When the upper and lower bounds share the first three letters, you are close. The Betweenle solver on this site tracks both bounds and suggests a midpoint word so you never overshoot.
Why halving beats guessing
Betweenle hands you exactly one bit of information per guess: the answer is alphabetically above your word or below it. A binary search makes that bit worth the maximum possible amount, because it discards half of the surviving range every time.
The arithmetic is what makes the strategy non-optional. Take any starting range and imagine it halved repeatedly. After one guess the window is half its original size; after two, a quarter; after ten, roughly a thousandth. That is the difference between a problem that sounds impossible and one that closes in a handful of turns.
The counter-move to avoid is guessing a familiar word because it is familiar. A word near the start of the alphabet when the window sits in the middle of it throws away most of the range you could have discarded.
Illustrative halving from a 1,024-word range. Every bar is the previous one divided by two; ten halvings take 1,024 down to a single word.
The order of operations
The strategy is short enough to state as a sequence, and the sequence matters because the later steps only work if the earlier ones were followed. Guessing a word you like before establishing a midpoint window means the bounds you record afterwards are not actually centred.
The single most important step is the third one. Betweenle rewards looking up the midpoint rather than recalling it, because a word that is close to the middle of the window and a word that feels like the middle of the window are often not the same word.
-
Start near the middle of the alphabet
A word beginning with M or N sits at the centre of the full dictionary, so the first guess cuts the range in half whichever way the answer falls.
-
Record both bounds after every guess
The upper bound is the lowest word you have been told is too high; the lower bound is the highest word you have been told is too low. Write both down rather than remembering the last guess.
-
Guess the midpoint of the surviving window
Not the midpoint of the alphabet and not a favourite word. The useful guess is the one closest to the middle of the range the bounds describe.
-
Switch to letters once the bounds share a prefix
When both bounds begin with the same three letters, the first letters have stopped discriminating. Move to matching the fourth letter, then the fifth.
-
Let the bounds choose the final answer
Near the end, the remaining candidates are usually adjacent entries in the dictionary. Pick the word between the two bounds rather than guessing a word from memory.
What the game is and is not telling you
Betweenle is unusual among daily puzzles because its clue has nothing to do with spelling. A guess that shares four letters with the answer tells you no more than a guess that shares none, unless it also happens to sit at a better position in the alphabet.
That single fact accounts for most of the mistakes new players make. Letter overlap feels like progress, and in Betweenle it is not. The only measurement that matters is where your guess sits inside the surviving window.
- Bounds tracked
- 2
- An upper bound and a lower bound, tightened after every guess.
- Clue per guess
- 1
- Higher or lower in alphabetical order — nothing about letters.
- Halvings to pass 1,024 words
- 10
- Two to the power of ten is 1,024, so ten midpoint guesses reduce a thousand-word range to one word.
Betweenle questions
What is Betweenle?
A daily word game where each guess tells you whether the secret word comes alphabetically before or after it. You narrow an upper and lower bound until you land on the answer.
What is the best Betweenle strategy?
Binary search. Start in the middle of the alphabet and always guess a word near the midpoint of the remaining range, focusing on the first two letters first.
Does guessing a word with the same first letter as the answer help in Betweenle?
Only if it also lands near the middle of the surviving range. Betweenle compares words alphabetically, so sharing letters with the answer is irrelevant unless it moves the bound in a useful direction.
What is the best first guess in Betweenle?
A word beginning with M or N, because it sits near the centre of the dictionary and therefore halves the range on the first guess whichever answer it produces.