Follow up for N-Queens problem.
Now, instead outputting board configurations, return the total number of distinct solutions.
Solution
方法和N-Queen相同
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
Follow up for N-Queens problem.
Now, instead outputting board configurations, return the total number of distinct solutions.
方法和N-Queen相同
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|