036 Valid Sudoku

Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:
Each row must contain the digits 1-9 without repetition.
Each column must contain the digits 1-9 without repetition.
Each of the 9 3x3 sub-boxes of the grid must contain the digits 1-9 without repetition.

示意图

The Sudoku board could be partially filled, where empty cells are filled with the character '.'.

Example:

Input:
[
["5","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
Output: true

Input:
[
["8","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
Output: false
Explanation: Same as Example 1, except with the 5 in the top left corner being
modified to 8. Since there are two 8's in the top left 3x3 sub-box, it is invalid.

Note:

A Sudoku board (partially filled) could be valid but is not necessarily solvable.
Only the filled cells need to be validated according to the mentioned rules.
The given board contain only digits 1-9 and the character '.'.
The given board size is always 9x9.

解释下题目:

按照它所给的三个条件一一去确认即可。

1. 按行按列按块进行查找

实际耗时:35ms

 public boolean isValidSudoku(char[][] board) {
        //按列检查
        for (int i = 0; i < 9; i++) {
            List<Character> list = new ArrayList<>();
            for (int j = 0; j < 9; j++) {
                if (list.contains(board[i][j])) {
                    return false;
                } else if (isNumber(board[i][j])) {
                    list.add(board[i][j]);
                }
            }
        }

        //按行检查
        for (int j = 0; j < 9; j++) {
            List<Character> list = new ArrayList<>();
            for (int i = 0; i < 9; i++) {
                if (list.contains(board[i][j])) {
                    return false;
                } else if (isNumber(board[i][j])) {
                    list.add(board[i][j]);
                }
            }
        }

        for (int k = 0; k < 3; k++) {
            List<Character> list = new ArrayList<>();
            for (int i = 3 * k; i < 3 * k + 3; i++) {
                for (int j = 0; j < 3; j++) {
                    if (list.contains(board[i][j])) {
                        return false;
                    } else if (isNumber(board[i][j])) {
                        list.add(board[i][j]);
                    }
                }
            }
            list.clear();
            for (int i = 3 * k; i < 3 * k + 3; i++) {
                for (int j = 3; j < 6; j++) {
                    if (list.contains(board[i][j])) {
                        return false;
                    } else if (isNumber(board[i][j])) {
                        list.add(board[i][j]);
                    }
                }
            }
            list.clear();
            for (int i = 3 * k; i < 3 * k + 3; i++) {
                for (int j = 6; j < 9; j++) {
                    if (list.contains(board[i][j])) {
                        return false;
                    } else if (isNumber(board[i][j])) {
                        list.add(board[i][j]);
                    }
                }
            }
        }


        return true;
    }

    public static boolean isNumber(char a) {
        if (a - '0' >= 0 && a - '0' <= 9) {
            return true;
        }
        return false;
    }

  主要就是利用了list的contain来判断有没有重复

时间复杂度O(3*n^2)
空间复杂度O(1)

2. 少写点代码呗

实际耗时:30ms

public boolean isValidSudoku2(char[][] board) {
        for (int i = 0; i < 9; i++) {
            HashSet<Character> rows = new HashSet<Character>();
            HashSet<Character> columns = new HashSet<Character>();
            HashSet<Character> cube = new HashSet<Character>();
            for (int j = 0; j < 9; j++) {
                if (board[i][j] != '.' && !rows.add(board[i][j]))
                    return false;
                if (board[j][i] != '.' && !columns.add(board[j][i]))
                    return false;
                int RowIndex = 3 * (i / 3);
                int ColIndex = 3 * (i % 3);
                if (board[RowIndex + j / 3][ColIndex + j % 3] != '.' && !cube.add(board[RowIndex + j / 3][ColIndex + j % 3]))
                    return false;
            }
        }
        return true;
    }

  他巧妙的地方在于对于3x3的块的处理。

时间复杂度O(3*n^2)
空间复杂度O(1)

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 分类:HashTable 考察知识点:HashTable 数组遍历 最优解时间复杂度:O(n^2) 36. Val...
    野生小熊猫阅读 1,535评论 0 1
  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,172评论 0 10
  • 一个人醒着的时候,夜最深 地面上的眼睛对视着天上的星星 深远的与深邃的相顾无言 银河便伴着路灯微弱的光明 一起遁入...
    陈年的旧事莫重提阅读 1,657评论 0 0
  • 芒种二候第二日,气温升至33℃,夏蝉在校园里的歌唱清晰可辨。孩子们说,周末在家门外也已听过蝉鸣。 对于蝉蜕,孩子们...
    圓蝸牛阅读 3,395评论 0 0
  • 随着时间的不断向前推进我对工作也越来越熟练了,尽管业绩不是十分理想,但是对我来说是很满足的。特别是拿到靠自己辛...
    我不是蜗牛阅读 1,783评论 0 0

友情链接更多精彩内容