Written and built by Brian Hamilton. Reviewed by Karan Hamilton.
Brian handles the technical puzzle logic, while Karan checks the page for clarity, usability, and player experience.
Puzzle tools are tested in the browser against Sudoku rules, example grids, and common player workflows. See how we make and test puzzles, our editorial standards, or report a problem.
Multiplayer Sudoku: two players, one device, one grid
This is a same-room game. Two people sit at one screen and take turns on a single shared grid — a hot-seat game, the way you would pass a crossword back and forth. There is no lobby, no room code, no account and no opponent on the other side of the internet, because the page holds no networking of any kind. If the person you want to play is in the next chair, this is built for exactly that. If they are in another city, this is not the page you want.
Saying that first is unusual for this corner of the web, where almost every “multiplayer Sudoku” means a live room you invite someone into. Ours is a different game rather than a worse one: because you are both looking at the same board, you are not racing two copies of a puzzle in parallel, you are taking it apart together and arguing about who did the hard part. The turn order forces that. You cannot run ahead.
The rules of Sudoku itself do not change. Fill every row, column and 3×3 box with 1 to 9. What changes is whose turn it is, what a mistake costs you, and the fact that at the end the board is a record of which of you found what.
How a turn actually works
The whole of the turn structure is four rules, and the third is the one people get wrong:
- Player 1 goes first. Pick a cell, enter a digit.
- A correct digit ends your turn. It goes on the board in your colour and stays there — placed digits cannot be erased or taken back by either player.
- A wrong digit does not end your turn. It is never written to the board. You take the penalty and you are still on move, so a wrong guess costs you but does not hand your opponent a free turn. Guessing repeatedly on the same cell is legal and, as the penalties below show, expensive.
- Pencil marks are private. Each player has their own set of notes and only ever sees their own, so you can work out a cell on your opponent's turn without showing them the answer.
Because a turn only ends on a correct placement, the two of you alternate strictly, and the number of digits each of you places is fixed before the game even starts by how many cells are empty. That has a consequence worth its own section further down.
The Erase button clears your own pencil marks in the selected cell and nothing else. There is deliberately no way to remove a digit once it is down — in a game where you can see the effect of a move before deciding whether to keep it, a takeback is not a convenience, it is an exploit.
Time Mode: two clocks, not one
Time Mode gives each player their own clock, and only the clock of whoever is on move runs. It is a chess clock: while you think, your time accumulates and your opponent's does not. When the grid is finished, the lower total wins. There is no shared countdown and no way to run out — the clock is a score, not a limit.
A wrong guess adds time, and the penalty escalates while you keep missing. The first wrong digit costs 10 seconds, the second in a row 15, the third 20, the fourth 25, and so on upward. Placing a correct digit resets the escalation back to 10. The arithmetic is deliberately brutal: four wrong guesses in a row is 70 seconds, which on an easy board is more time than a careful player spends on ten cells.
So Time Mode is not really a speed contest. It rewards the player who is willing to be slow on the cell in front of them in exchange for never paying a penalty — and it punishes the instinct, familiar from solo Sudoku, to try a digit and see whether it looks wrong.
Points Mode: the cells are not worth the same
In Points Mode a correct digit pays you its own value. Place a 9 and score 9; place a 1 and score 1, for identical work. Since each digit appears nine times in a finished grid, a complete board is worth 9 × 45 = 405 points, always. The clues you start with are already filled in, so nobody scores them; what is actually in play is 405 minus the clues, which averages about 205 on easy and 276 on hard.
Wrong guesses deduct, and escalate the same way: 5 points for the first, 8 for the second in a row, 11 for the third, 14 for the fourth. A correct placement resets it. One quirk worth knowing: your score cannot go below zero, so a player sitting on nothing has nothing to lose and can guess freely until they get on the board. It is a small asymmetry and it favours whoever is behind.
The strategic consequence is that Points Mode is not about solving the grid, it is about choosing which cells you solve. Every cell has to be filled eventually by one of you, so the game is a series of decisions about which of the currently-solvable cells to take — and the right answer is usually the biggest digit you can prove, not the easiest one.
Player 1 places one more digit than Player 2
This one is structural and it is not mentioned anywhere else that we can find. Turns alternate strictly, so the number of digits each player places is decided entirely by how many cells are empty at the start. An easy board has 40 clues, leaving 41 cells; 41 is odd, so Player 1 places 21 of them and Player 2 places 20. Medium leaves 49. Hard leaves 55. All three are odd numbers, every time.
So Player 1 always gets one extra placement, on every easy and medium board and on 99% of hard ones. In Time Mode that is a mild disadvantage — one more cell to be timed on. In Points Mode it is an edge worth on average five points, the mean value of a digit. That is small next to a single escalating miss, but it is not nothing in a close game, and the fix is free: play two rounds and swap who starts.
| Level | Clues | Cells in play | Player 1 places | Player 2 places | Points to play for |
|---|---|---|---|---|---|
| Easy | 40 | 41 | 21 | 20 | 205 |
| Medium | 32 | 49 | 25 | 24 | 246 |
| Hard | 26 | 55 | 28 | 27 | 276 |
Clue counts are the generator's targets, taken from DIFFICULTY_GIVENS in the page's own code. Points are the average across 200 generated boards per level; a full grid is always worth exactly 405, so whatever is not in the clues is on the table. Because 81 minus 40, 32 or 26 is odd every time, Player 1 places one more digit than Player 2 on every easy and medium board and on 99% of hard ones.
What easy, medium and hard actually demand
The three levels are clue counts, not difficulty ratings — 40, 32 and 26 — so it is fair to ask what those counts translate into at the table. We can answer that properly, because the eighteen technique detectors behind our Sudoku Helper can be pointed at a board and asked what it takes to finish.
Every easy board in 200 was solvable with naked and hidden singles alone — no candidate notation required, which is exactly right for two people learning the format together. Medium is nearly the same: nine in ten need nothing harder than singles. Hard is a genuinely different animal, and only 57% of hard boards stay within singles.
| Level | Singles alone | Locked candidates | Pairs or triples | Something advanced | Past our eighteen |
|---|---|---|---|---|---|
| Easy | 100% | — | — | — | — |
| Medium | 90.5% | 2.5% | — | 4.5% | 2.5% |
| Hard | 57.0% | 7.5% | 4.5% | 17.0% | 14.0% |
200 boards per level, each one solved by the eighteen technique detectors behind our Sudoku Helper working from the simplest move upwards. The column is the hardest thing the board ever demanded. “Past our eighteen” means the detectors ran out before the grid did — the puzzle still has exactly one answer, but finishing it needs a chain technique the helper does not implement.
Every board has exactly one answer
Before a board is handed to you, the generator removes clues one at a time and checks after each removal that the puzzle still has exactly one solution. If removing a clue would leave two, the clue goes back. That is why the clue counts in the table are targets rather than promises: hard aims for 26 and occasionally settles for 27, because the twenty-seventh clue was load-bearing.
That check matters far more here than in solo play. This game marks a digit right or wrong by comparing it against one stored solution, and it charges you for being wrong. On an ambiguous board a player could deduce a perfectly valid digit, be told it was a mistake, and pay the penalty for it — which in a competitive game is not a rough edge, it is a broken scoreboard. So the guarantee is worth stating plainly: if you can prove a digit belongs in a cell, the game will accept it.
How to win Time Mode
Never guess. That is most of it. The escalation means the second and third misses cost more than the first, so the disaster case is not one wrong digit, it is the tilt that follows one wrong digit. If you have just been penalised, the correct response is to slow down further, not to hurry to make the time back.
Do your work on your opponent's clock. Your timer is stopped while they think. That is the single biggest lever in the mode and most players ignore it because solo Sudoku gives them no reason to think while someone else is moving. Use their turn to find your next cell and to fill in pencil marks — notes are free and invisible to them.
Take the cell you have already proved. Since you cannot bank a turn, the fastest move is the one you worked out thirty seconds ago on their clock. Scanning fresh on your own time is exactly the expensive habit the mode is built to punish.
How to win Points Mode
Look for the big digits first. A 9 pays nine times a 1 for the same effort. Before you place anything, scan for whether any 8 or 9 is provable right now, because if it is and you take an easy 2 instead, you have handed your opponent the expensive cell.
The last few digits of a number are the easy ones. Once eight 9s are on the board the ninth has only one place it can go, so high digits get easier to place as the game goes on — and your opponent knows that too. The contested moment is the sixth or seventh 9, not the ninth.
Do not chase a deficit with a guess. Five points for a first miss is roughly a mid-value cell, and 8 and 11 after that outrun anything you can win back in a turn. The exception is the quirk above: at exactly zero points a wrong guess is free, so the opening exchange is the only time bluffing costs nothing.
What changes when someone else is at the table
Solo Sudoku has no clock you care about and no cost to a wrong digit beyond your own annoyance. Both change here, and they change the kind of attention the puzzle asks for. A solo solver can afford to try something; a player facing an escalating penalty cannot, and that is a genuinely different skill.
The other difference is that you stop solving the whole grid. In solo play every cell is yours eventually, so the order barely matters. Here the order is the entire game: which cells you take, which you leave because they will still be there next turn, and which you take early precisely because your opponent is one move from seeing them.
If you want to get better at the underlying solving rather than the contest, the Sudoku Trainer drills pattern recognition one technique at a time, and the Sudoku Helper will tell you the simplest available move on any position and explain why it works.
Who this is for, and who it is not for
It is for two people in the same room: a pair on a sofa, a parent and child on Easy, two colleagues at lunch, anyone who wants a shared puzzle rather than a race. It needs no signup, no app and no second device, and it works on a phone passed back and forth as well as it does on a laptop.
It is not for playing with someone remotely. There is no way to invite anyone, because the game runs entirely in the one browser it is open in. If that is what you came for, several sites do real-time online rooms and we would rather say so than waste your time.
It is also not a good fit for two players of very different strength, because the shared board means the stronger player simply takes more cells. If that is your pairing, Easy plus Points Mode is the most forgiving combination — the weaker player can hunt for one big digit rather than try to keep pace.
Where to go from here
If you want the puzzle to yourself, classic Sudoku is the same engine without the turn-taking, with easy, hard and evil banks to work through, and the daily puzzle gives you and a friend the same grid to compare times on even when you are not in the same room.
For a different shape of two-player game, Killer Sudoku and Jigsaw Sudoku both work well passed back and forth on paper — and printable Sudoku will give you two copies of the same grid if you would rather race side by side than share one board.