The 24-Point Solution Database
This page publishes the complete, engine-verified solution space of the 24 game: every distinct four-number combination of 1–13, classified by solvability and difficulty. Download the full dataset, query a hand through the free JSON API, or browse all 1,820 combos below.
Dataset statistics
- Total combos
- 1,820
- Solvable
- 1,362
- Unsolvable
- 458
- Easy
- 216
- Medium
- 181
- Hard
- 949
- Expert
- 16
Methodology
The dataset is produced by an exact-arithmetic solver: every intermediate result is a reduced fraction, so solvability and solution counts are exact conclusions — never floating-point approximations.
Canonical dedup: hands are sorted multisets, so 3-8-8-3 and 8-3-3-8 count once. The full space is C(16,4) = 1,820 combos — every way to draw 4 numbers from 1–13 with repetition.
Difficulty is a disjoint four-tier partition of the solvable combos: easy = whole-number intermediate steps, all cards 1–9, at least 3 solutions; medium = whole-number steps, all cards 1–9, only 1–2 solutions; hard = whole-number steps with a card in 10–13; expert = requires fraction intermediates (no whole-number solution exists).
Every number is computed offline with the site's own solver — the same engine behind the solver page — and asserted during generation: totals, per-tier counts and per-combo solution counts must match a fresh solve.
Cite this dataset
24Point. "The 24-Point Solution Database." https://24pointgame.com/dataset. Accessed 2026-09-18.
Download the dataset
Solve API
Send a GET request with a cards parameter — 3 or 4 comma-separated integers from 1 to 13. No API key is required; the target is always 24.
Example request and response:
GET /api/solve?cards=3,3,8,8{
"code": 0,
"message": "ok",
"data": {
"cards": [
3,
3,
8,
8
],
"target": 24,
"count": 1,
"solutions": [
{
"expression": "8 ÷ (3 − 8 ÷ 3)",
"steps": [
"8 ÷ 3 = 8/3",
"3 − 8/3 = 1/3",
"8 ÷ 1/3 = 24"
]
}
],
"solution_page": "/solution/3-3-8-8"
}
}Five or more numbers are disabled on this endpoint (Cloudflare Workers CPU limits) — download the dataset above for offline analysis. Requests are rate-limited to 30 per minute per IP.
Browse all 1,820 combos
| 1 1 1 1 | Unsolvable |
| 1 1 1 2 | Unsolvable |
| 1 1 1 3 | Unsolvable |
| 1 1 1 4 | Unsolvable |
| 1 1 1 5 | Unsolvable |
| 1 1 1 6 | Unsolvable |
| 1 1 1 7 | Unsolvable |
| 1 1 1 8 | 1 solutions |
| 1 1 1 9 | Unsolvable |
| 1 1 1 10 | Unsolvable |
| 1 1 1 11 | 1 solutions |
| 1 1 1 12 | 3 solutions |
| 1 1 1 13 | 1 solutions |
| 1 1 2 2 | Unsolvable |
| 1 1 2 3 | Unsolvable |
| 1 1 2 4 | Unsolvable |
| 1 1 2 5 | Unsolvable |
| 1 1 2 6 | 2 solutions |
| 1 1 2 7 | 1 solutions |
| 1 1 2 8 | 6 solutions |
| 1 1 2 9 | 1 solutions |
| 1 1 2 10 | 2 solutions |
| 1 1 2 11 | 7 solutions |
| 1 1 2 12 | 7 solutions |
| 1 1 2 13 | 7 solutions |
| 1 1 3 3 | Unsolvable |
| 1 1 3 4 | 1 solutions |
| 1 1 3 5 | 1 solutions |
| 1 1 3 6 | 7 solutions |
| 1 1 3 7 | 7 solutions |
| 1 1 3 8 | 6 solutions |
| 1 1 3 9 | 6 solutions |
| 1 1 3 10 | 1 solutions |
| 1 1 3 11 | 1 solutions |
| 1 1 3 12 | 5 solutions |
| 1 1 3 13 | 2 solutions |
| 1 1 4 4 | 1 solutions |
| 1 1 4 5 | 7 solutions |
| 1 1 4 6 | 6 solutions |
| 1 1 4 7 | 6 solutions |
| 1 1 4 8 | 7 solutions |
| 1 1 4 9 | 2 solutions |
| 1 1 4 10 | 1 solutions |
| 1 1 4 11 | Unsolvable |
| 1 1 4 12 | 2 solutions |
| 1 1 4 13 | Unsolvable |
| 1 1 5 5 | 7 solutions |
| 1 1 5 6 | 6 solutions |
| 1 1 5 7 | 3 solutions |
| 1 1 5 8 | 1 solutions |
Page 1 of 37