Formula
The live score formula is simple
The site uses the same scoring behavior as the game code: score = 500 - moves + 100 points for each completed suit. That keeps score chasing focused on efficiency, not on padding the board with extra clicks.
- Starting score: 500 points.
- Each move: -1 point.
- Each undo: -1 point because it increments the move count.
- Each completed suit: +100 points.
- Elapsed time is tracked for comparison, but it does not change the score.
Example
A clean replay target is easy to see
Say you finish a 2-suit game with 176 moves and 8 completed suits. The score is 500 - 176 + 800 = 1,124. If you replay the same difficulty and trim just 11 moves from the run, the score becomes 1,135. That is the point of this page: the score gives you a concrete number to beat on the next attempt.
Time still matters as a second benchmark. A faster run can feel better, but if it costs extra moves, the score drops. Hint can help you avoid those wasted moves, and undo is useful for learning, but both are best treated as tools for cleaner replay lines rather than as part of the scoring formula.