Sudoku difficulty rater

Sudoku difficulty rater — Easy / Medium / Hard / Expert

Paste a 9×9 Sudoku puzzle, get a rated difficulty based on which solving techniques are required — not just the clue count. Two puzzles with the same number of givens can be vastly different in actual difficulty; this tool tells you which.

Accepts 81 chars (digits 1–9 for filled cells, 0 or . for blanks). Whitespace and newlines are ignored.

How the rating works

The rater tries to solve the puzzle using progressively harder techniques and reports the hardest one needed:

The rating reflects what a logical solver would need. Computer-solver-only puzzles (those that always require backtracking) are reported as “brute-force needed,” which is a fairness marker: human-grade Sudoku always has a logical solution path.

Why clue count alone isn’t difficulty

A 30-clue puzzle can be Easy if all the empty cells reduce to naked singles; another 30-clue puzzle can be Expert if it requires X-wings to make progress. Common heuristics like “more blanks = harder” are loosely correlated but not deterministic.

Real difficulty depends on:

This rater focuses on the first factor (which techniques are required at all). Commercial Sudoku solvers often use a more elaborate scoring system that weights the second and third factors too.

Related