码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode刷题 36 有效的数独

时间:2020-04-16 22:56:57      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:for   board   etc   turn   tor   har   inf   cto   cpp   

技术图片

 

 技术图片

 

 思路:模拟

class Solution {
public:
    bool isValidSudoku(vector<vector<char>>& board) {
        int a[10];
        for(int i = 0; i < board.size(); ++i) {
            memset(a, 0, sizeof a);
            for(int j = 0; j < board[0].size(); ++j) {
                if(board[i][j] != ‘.‘) {
                    a[board[i][j] - ‘0‘]++;
                    if(a[board[i][j] - ‘0‘] > 1) {
                        return false;
                    }
                }
            }
        }
        for(int i = 0; i < board.size(); ++i) {
            memset(a, 0, sizeof a);
            for(int j = 0; j < board[0].size(); ++j) {
                if(board[j][i] != ‘.‘) {
                    a[board[j][i] - ‘0‘]++;
                    if(a[board[j][i] - ‘0‘] > 1) {
                        return false;
                    }
                }
            }
        }
        for(int k = 0; k < 9; k += 3) {
            for(int m = 0; m < 9; m += 3) {
                memset(a, 0, sizeof a);
                for(int i = k; i < k + 3; ++i) {
                    for(int j = m; j < m + 3; ++j) {
                        if(board[j][i] != ‘.‘) {
                            a[board[j][i] - ‘0‘]++;
                            if(a[board[j][i] - ‘0‘] > 1) {
                                return false;
                            }
                        }
                    }
                }
            }
        }
        return true;
    }
};

 

LeetCode刷题 36 有效的数独

标签:for   board   etc   turn   tor   har   inf   cto   cpp   

原文地址:https://www.cnblogs.com/lightac/p/12716124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!