Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Partial #430

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
valid-solution?
  • Loading branch information
epicharri committed Jul 25, 2017
commit c393cb27b8c76a77335451d1a88c3e6214d4de27
5 changes: 4 additions & 1 deletion src/sudoku.clj
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@
(blocks board)))

(defn valid-solution? [board]
nil)
(and
(valid-rows? board)
(valid-cols? board)
(valid-blocks? board)))

(defn set-value-at [board coord new-value]
nil)
Expand Down