Created
July 31, 2012 02:54
-
-
Save swannodette/3213107 to your computer and use it in GitHub Desktop.
sudoku.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn distincto | |
"s is a sequence of sequence of vars. | |
ensure that vars in each particular sequence | |
take on distinct values." | |
[s] | |
(if (seq s) | |
(let [vars (first s)] | |
(all | |
(distinctfd vars) | |
(distincto (next s)))) | |
succeed)) | |
(defn all-infd | |
"Assign a domain to all vars." | |
[vars domain] | |
(if (seq vars) | |
(all | |
(domfd (first vars) domain) | |
(all-infd (next vars) domain)) | |
succeed)) | |
(defn get-square | |
"Extract a 3x3 square from grid using | |
x y offsets." | |
[grid x y] | |
(for [x (range x (+ x 3)) | |
y (range y (+ y 3))] | |
(get-in grid [x y]))) | |
(defn init-all | |
"Take a vector of [[x y] value] elements. | |
Use each element to unify the var at grid | |
location with specified value." | |
[grid hints] | |
(if (seq hints) | |
(let [[location value] (first hints)] | |
(all | |
(== (get-in grid location) value) | |
(init-all grid (next hints)))) | |
succeed)) | |
(defn sudoku | |
"Construct a 9x9 grid populated with fresh logic | |
vars. Calculate row, column and square groupings | |
of the grid. Use hints to set any initial values. | |
Use distincto to ensure that each grouping contains | |
distinct values." | |
[hints] | |
(let [vars (repeatedly 81 lvar) | |
grid (->> vars | |
(partition 9) (map vec) (into [])) | |
rows grid | |
cols (apply map vector grid) | |
squares (for [x (range 0 9 3) | |
y (range 0 9 3)] | |
(get-square grid x y))] | |
(run-nc 1 [q] | |
(== q grid) | |
(all-infd vars (domain 1 2 3 4 5 6 7 8 9)) | |
(init-all grid hints) | |
;; make all rows, columns & squares distinct | |
(distincto rows) | |
(distincto cols) | |
(distincto squares)))) | |
(comment | |
;; ~95ms to solve on my machine | |
(sudoku | |
[[[0 4] 2] [[0 6] 9] [[1 4] 6] [[1 5] 3] | |
[[1 8] 8] [[2 0] 3] [[2 5] 8] [[2 6] 1] | |
[[2 7] 4] [[3 4] 4] [[3 6] 8] [[3 8] 7] | |
[[4 1] 8] [[4 2] 4] [[4 5] 6] [[4 6] 3]]) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment