NUMBERS · ORIGINAL BROWSER GAME
Mini Sudoku
Complete a 4×4 Sudoku so every row, column and 2×2 box contains 1 through 4.
Implementation reviewed August 1, 2026 · Published independently by StarboxPLAY THE CURRENT BUILD
Start a round in your browser
The game runs locally in this tab. No account, download, payment, or score upload is required.
Rules and objective
Complete a 4×4 Sudoku so every row, column and 2×2 box contains 1 through 4. Given cells are fixed; tapping an empty cell cycles it through 1, 2, 3 and 4 before comparison with the solution.
How scoring works
A correct completed grid records 100 points. Scores are saved only in this browser's local storage, so changing devices or clearing site data starts a new local record.
What we checked in this build
We verified that fixed cells cannot change, all editable cells cycle correctly and only the complete solution triggers success.
This note describes the Starbox implementation rather than the rules of every similarly named game elsewhere.
List what a unit is missing
Each row, column, and two-by-two box must contain 1, 2, 3, and 4 once. For a row showing 1, blank, 3, blank, the missing set is {2,4}. Do not guess between them yet; carry that small candidate set to the column check.
Intersect all three constraints
A cell is valid only if its number is absent from the row, column, and box. If the row allows {2,4}, the column already contains 4, and the box allows both, the cell must be 2. This intersection is the core operation of mini Sudoku.
Place forced values first
Scan for a unit with only one missing number, then for a cell whose candidate set has one value. Every forced placement updates three units and may create another forced move. Filling the easiest certainty first is faster and safer than working left to right.
Recover from a contradiction
If a later cell has no possible value, an earlier entry was wrong. Review user-entered numbers in reverse order and test each against its row, column, and box. Avoid replacing multiple values at once; one controlled correction preserves the deductions that remain valid.
Editorial and correction notes
This page was checked against the game code and its visible controls. It does not present entertainment scores as medical, educational, or professional assessments. If a rule, score, or control behaves differently from this description, email songtianqi0920@gmail.com with the page URL, browser, and device.
Play the current build, then return to compare the result with the strategy above.