摘要:
description: 八皇后 Note: Example: answer: class Solution { public: int totalNQueens(int n) { int res = 0; vector pos(n, 1); helper(pos, 0, res); return 阅读全文
posted @ 2019-07-25 20:49
kakaxisisan
阅读(99)
评论(0)
推荐(0)