Hi,
I'm trying to implement a simple sudoku solver and came up with this problem:
Consider this:
I'm trying to implement a simple sudoku solver and came up with this problem:
Consider this:
(defvar board '(
(1 0 0 0 0 7 4 0 0)
(9 0 6 4 0 0 0 0 0)
(0 5 0 8 3 0 0 0 0)
(3 6 0 0 0 0 0 0 5)
(0 0 0 0 2 0 0 0 0)
(5 0 8 0 0 0 0 1 4)
(0 0 0 0 7 3 0 9 0)
(0 0 0 0 0 8 7 0 6)
(0 0 5 9 0 0 0 0 1)))
How can I get a list with the contents of the nth column?