摘要: 回溯法 思路: 参考37.解数独。在约束条件判断中,主对角线row-col = 常数, 副对角线 row+col = 常数。 代码: class Solution: def solveNQueens(self, n: int) -> List[List[str]]: def could_place( 阅读全文
posted @ 2020-06-02 13:31 nil_f 阅读(117) 评论(0) 推荐(0) 编辑