prb | 4 months ago | on: Solving the NY Times "Pips" game with F#
prb's comments
prb | 4 months ago | on: Solving the NY Times "Pips" game with F#
prb | 4 months ago | on: Solving the NYTimes Pips puzzle with a constraint solver
• Solution Counts Overview
- Processed all 183 stored puzzles (61 dates × 3 difficulties) via target/
release/count_solutions, saving raw results to gpt_5_codex/output/
solution_counts.csv.
- 131 puzzles (≈72%) have exactly one solution: easy 50, medium 44, hard 37.
- Remaining puzzles show small clusters of alternatives except for a handful of
hard cases with large branching factors.
Most Multi-Solution Puzzles
- 2025-09-15 hard: 2,764,800 solutions
- 2025-10-05 hard: 344 solutions
- 2025-09-30 hard: 110 solutions
- 2025-09-04 hard: 86 solutions
- 2025-08-23 hard: 80 solutions
(I only asked for the top five.)prb | 4 months ago | on: Solving the NYTimes Pips puzzle with a constraint solver
Your guess is correct. Take a look at my backtracking solver linked from another comment; one of the optimizations I added after the fact was to select a square with the "smallest" constraint for the next placement, with the motivation of avoiding a rathole. (The 2025-09-15 puzzle with the =63 constraint is a good test case, FWIW.)
My Rust solver running on an M3 Max Macbook Pro is often under a second and never more than about 30 seconds. (I did pull down all of the past puzzles using an observation from Evan Matthews in his solver: https://github.com/ematth/pips)
prb | 4 months ago | on: Solving the NYTimes Pips puzzle with a constraint solver
prb | 15 years ago | on: Snap: A Haskell Web Framework: Benchmarks
prb | 16 years ago | on: Help pick a better name for NoSQL Movement at NoSQL East Conference