Skip to content

Commit 09edcc3

Browse files
committed
add newline
1 parent 850b67b commit 09edcc3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/examples/source-3-non-det/queens.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
as soon as the choice is generated, thereby reducing the search space. However, this is not
88
enough to yield a quick solution when N = 8.
99
This solution also gives repeated solutions (i.e different permutations that have all the same positions) upon backtracking.
10+
1011
The second (queens_fast) uses non-determinism in picking only the row and not the column of each position, with the
1112
columns being fixed. This further reduces the search space, yielding a quick solution when N = 8.
1213
*/

0 commit comments

Comments
 (0)