D
DoUnscrambler

Boggle Solver

Type your 4×4 Boggle board into the grid and instantly discover every valid word — 3 letters and up — that can be formed by chaining adjacent cells.

Type one letter in each cell. Words must use adjacent cells (8 directions) and can't reuse a cell.

What Is Boggle?

Boggle is a timed word-search game played on a 4×4 grid of lettered dice. Players race the three-minute clock to write down every word they can spot by tracing an unbroken path through neighbouring dice. A die may only be visited once per word, and the path can travel horizontally, vertically, or diagonally — eight possible directions in all. Words must be at least three letters long to score; anything shorter is ignored.

Key Definitions

  • Grid cell — a single square on the 4×4 board holding one letter (or, on some variants, a digraph like Qu).
  • Adjacency — the eight-way neighbour relationship between cells; a path can step to any of up to eight surrounding squares.
  • Path — an ordered chain of distinct cells whose letters, read in sequence, spell a candidate word.
  • Depth-first search (DFS) — a graph-traversal strategy that explores one branch as far as it can before backtracking; the engine uses it to walk every possible path from each starting cell.
  • Prefix pruning — abandoning a branch as soon as its current letter-string is not the start of any dictionary word, so no time is wasted chasing dead-ends.

How the Boggle Solver Works

Enter the 16 letters of your board into the grid above. The solver launches a depth-first search (DFS) from every cell, accumulating letters along the way and checking the running string against a 275,000-word dictionary at every step. To keep the search fast, it uses prefix pruning: the moment the current letter sequence cannot be the start of any real word, the branch is abandoned immediately. Every valid word it discovers is collected, de-duplicated, and grouped by length so the longest, highest-scoring plays rise to the top.

Boggle Scoring, Explained

  • 3- and 4-letter words are worth 1 point; 5-letter words 2 points; 6 letters 3 points; 7 letters 5 points; 8+ letters 11 points.
  • The rare letters — Q, Z, X, J, K — earn the most points, so hunt for them first and build paths outward.
  • Look for plural forms and common suffixes (-ED, -ING, -ER, -LY) to extend short finds into longer, higher-scoring ones.
  • Try our Word Scrambler to practise spotting anagrams in jumbled racks.
  • Pair this tool with the Wordle Solver when you want daily five-letter puzzle help.

Strategy Tips from the Solver's Output

When the solver returns hundreds of words for a single board, scan the longest group first — those 7- and 8-letter finds are worth the most points and are the ones most opponents will miss. Then sweep the 5- and 6-letter group, since those strike the best balance between scoring and recall speed. Finally, pick off short three-letter words only if you have time left, because each one is worth just a single point. Practising this triage order with the solver is the fastest way to lift your live-game average.

Frequently asked questions

How does a Boggle solver work?

It walks every path across the board, moving only between touching squares including diagonals and never reusing a square within one word, and keeps each path that spells a valid dictionary word.

What is the minimum word length in Boggle?

Three letters in standard Boggle, and four in Big Boggle and Super Big Boggle. This solver returns everything from three letters upward so you can apply whichever rule your set uses.

How is Boggle scored?

Three and four-letter words score 1 point, five letters score 2, six score 3, seven score 5, and words of eight letters or more score 11 points each.