摘要: class Solution { public: bool isValidSudoku(vector<vector<char>>& board) { int rows[9][9];//建造一个二维数组,记录行 int columns[9][9];//建造一个二维数组,记录列 int subboxes 阅读全文
posted @ 2022-09-25 20:23 jerry-autumn 阅读(37) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq1225308337/article/details/119087128 阅读全文
posted @ 2022-09-25 16:10 jerry-autumn 阅读(26) 评论(0) 推荐(0)