Read Me
This commit is contained in:
parent
bf7f1e81d6
commit
f5ad41f9d4
|
@ -1,13 +1,13 @@
|
||||||
# Sudoku Solver (Prolog)
|
# Sudoku Solver (Prolog)
|
||||||
|
|
||||||
run by using the command
|
Run by using the command
|
||||||
|
|
||||||
problem(1,Rows), sudoku(Rows), maplist(portray_clause, Rows).
|
problem(1,Rows), sudoku(Rows), maplist(portray_clause, Rows).
|
||||||
|
|
||||||
|
|
||||||
More problems-
|
More problems-
|
||||||
|
|
||||||
puzzle(1, [[_,4,_,9,_,_,_,5,_],
|
puzzle(1, [[_,4,_,9,_,_,_,5,_],
|
||||||
[2,_,_,_,_,_,_,4,_],
|
[2,_,_,_,_,_,_,4,_],
|
||||||
[1,9,_,_,8,_,7,_,_],
|
[1,9,_,_,8,_,7,_,_],
|
||||||
[5,_,_,_,_,_,1,_,_],
|
[5,_,_,_,_,_,1,_,_],
|
||||||
|
@ -17,7 +17,7 @@ More problems-
|
||||||
[3,_,_,2,_,8,_,_,_],
|
[3,_,_,2,_,8,_,_,_],
|
||||||
[_,_,_,_,_,_,_,_,_]]).
|
[_,_,_,_,_,_,_,_,_]]).
|
||||||
|
|
||||||
puzzle(2, [[_,_,9,5,_,_,_,3,7],
|
puzzle(2, [[_,_,9,5,_,_,_,3,7],
|
||||||
[1,3,7,9,_,_,_,5,2],
|
[1,3,7,9,_,_,_,5,2],
|
||||||
[2,_,_,_,_,3,6,9,_],
|
[2,_,_,_,_,3,6,9,_],
|
||||||
[3,5,2,_,1,_,_,_,6],
|
[3,5,2,_,1,_,_,_,6],
|
||||||
|
@ -27,7 +27,7 @@ More problems-
|
||||||
[5,2,_,_,_,1,_,6,_],
|
[5,2,_,_,_,1,_,6,_],
|
||||||
[_,_,_,3,_,7,_,_,_]]).
|
[_,_,_,3,_,7,_,_,_]]).
|
||||||
|
|
||||||
puzzle(3, [[_,5,_,1,_,_,_,_,_],
|
puzzle(3, [[_,5,_,1,_,_,_,_,_],
|
||||||
[2,_,_,5,_,_,6,_,_],
|
[2,_,_,5,_,_,6,_,_],
|
||||||
[1,_,_,_,8,_,2,_,_],
|
[1,_,_,_,8,_,2,_,_],
|
||||||
[_,8,_,4,3,_,_,_,_],
|
[_,8,_,4,3,_,_,_,_],
|
||||||
|
|
Loading…
Reference in a new issue