We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 850b67b commit 09edcc3Copy full SHA for 09edcc3
src/examples/source-3-non-det/queens.js
@@ -7,6 +7,7 @@
7
as soon as the choice is generated, thereby reducing the search space. However, this is not
8
enough to yield a quick solution when N = 8.
9
This solution also gives repeated solutions (i.e different permutations that have all the same positions) upon backtracking.
10
+
11
The second (queens_fast) uses non-determinism in picking only the row and not the column of each position, with the
12
columns being fixed. This further reduces the search space, yielding a quick solution when N = 8.
13
*/
0 commit comments