It's the most frustrating feeling in Solitaire: you have moves left, but every path leads to a dead end. You aren't crazy. About 18% of all Klondike deals are unsolvable from the very first shuffle. Here is the anatomy of an impossible game.
The Anatomy of a Deadlock
A game becomes unsolvable when the card required to make a move is buried beneath the very stack you need to move. This is known as a circular dependency.
The "Buried Ace" Problem
The most common reason for a deadlock is unreachable foundations. If the Ace of Spades is buried at the bottom of a face-down pile, and the card directly on top of it is the 2 of Spades, you have a mathematical impossibility.
You cannot move the 2 of Spades to the foundation until the Ace is there. But you cannot reach the Ace until you move the 2. This circular dependency accounts for a large portion of unsolvable games.
The Color Trap
Another common blockade involves the alternating color rule. Imagine you need to move a Black 7 to reveal a card. The only place it can go is onto a Red 8.
If all Red 8s are buried behind that Black 7 (or deeper in the same pile), you are stuck. No amount of shuffling the waste pile will fix this because the blockers are locked within the tableau structure itself.
Can "Undo" Fix It?
It depends on the type of unsolvable deal:
| Scenario | Can Undo Help? | Reason |
|---|---|---|
| Mistake | YES | You just made a wrong choice (branching path). |
| Deadlock | NO | The cards are arranged in a locked loop. |
| Bad Stock RNG | YES | (Sometimes) Drawing cards in a different order might help. |
How to Spot a Dead End
- The "King Lock": If you have an empty column but no King to fill it, that column is effectively dead space.
- Cycling the Stock: If you cycle through the entire stock pile 3 times without making a single move, the game is over.
- Low Cards Buried: If you see high cards (K, Q, J) blocking the tableau but you haven't seen the Aces or 2s yet, they are likely buried deep.
The Solver's Verdict
On Solitaire Online, our game engine can detect when no more legal moves are possible. If you see the "Game Over" screen, it means our solver has calculated that you've hit a wall. Don't worry-just click "New Game" and try again. The next deal might be the 82% that wins!