6 lines
163 B
Text
6 lines
163 B
Text
|
|
matrixView[n_] :=
|
||
|
|
Grid[Normal@
|
||
|
|
SparseArray[MapIndexed[{#, First@#2} -> "Q" &, #], {n, n}, "."],
|
||
|
|
Frame -> All] & /@ nQueen[n]
|
||
|
|
matrixView[6] // OutputForm
|