返回介绍

solution / 0000-0099 / 0036.Valid Sudoku / README_EN

发布于 2024-06-17 01:04:40 字数 9250 浏览 0 评论 0 收藏 0

36. Valid Sudoku

中文文档

Description

Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:

  1. Each row must contain the digits 1-9 without repetition.
  2. Each column must contain the digits 1-9 without repetition.
  3. Each of the nine 3 x 3 sub-boxes of the grid must contain the digits 1-9 without repetition.

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.

 

Example 1:

Input: board = 
[["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

Example 2:

Input: board = 
[["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.

 

Constraints:

  • board.length == 9
  • board[i].length == 9
  • board[i][j] is a digit 1-9 or '.'.

Solutions

Solution 1: Traversal once

The valid sudoku satisfies the following three conditions:

  • The digits are not repeated in each row;
  • The digits are not repeated in each column;
  • The digits are not repeated in each $3 \times 3$ box.

Traverse the sudoku, for each digit, check whether the row, column and $3 \times 3$ box it is in have appeared the digit. If it is, return false. If the traversal is over, return true.

The time complexity is $O(C)$ and the space complexity is $O(C)$, where $C$ is the number of empty spaces in the sudoku. In this question, $C=81$.

class Solution:
  def isValidSudoku(self, board: List[List[str]]) -> bool:
    row = [[False] * 9 for _ in range(9)]
    col = [[False] * 9 for _ in range(9)]
    sub = [[False] * 9 for _ in range(9)]
    for i in range(9):
      for j in range(9):
        c = board[i][j]
        if c == '.':
          continue
        num = int(c) - 1
        k = i // 3 * 3 + j // 3
        if row[i][num] or col[j][num] or sub[k][num]:
          return False
        row[i][num] = True
        col[j][num] = True
        sub[k][num] = True
    return True
class Solution {
  public boolean isValidSudoku(char[][] board) {
    boolean[][] row = new boolean[9][9];
    boolean[][] col = new boolean[9][9];
    boolean[][] sub = new boolean[9][9];
    for (int i = 0; i < 9; ++i) {
      for (int j = 0; j < 9; ++j) {
        char c = board[i][j];
        if (c == '.') {
          continue;
        }
        int num = c - '0' - 1;
        int k = i / 3 * 3 + j / 3;
        if (row[i][num] || col[j][num] || sub[k][num]) {
          return false;
        }
        row[i][num] = true;
        col[j][num] = true;
        sub[k][num] = true;
      }
    }
    return true;
  }
}
class Solution {
public:
  bool isValidSudoku(vector<vector<char>>& board) {
    vector<vector<bool>> row(9, vector<bool>(9, false));
    vector<vector<bool>> col(9, vector<bool>(9, false));
    vector<vector<bool>> sub(9, vector<bool>(9, false));
    for (int i = 0; i < 9; ++i) {
      for (int j = 0; j < 9; ++j) {
        char c = board[i][j];
        if (c == '.') continue;
        int num = c - '0' - 1;
        int k = i / 3 * 3 + j / 3;
        if (row[i][num] || col[j][num] || sub[k][num]) {
          return false;
        }
        row[i][num] = true;
        col[j][num] = true;
        sub[k][num] = true;
      }
    }
    return true;
  }
};
func isValidSudoku(board [][]byte) bool {
  row, col, sub := [9][9]bool{}, [9][9]bool{}, [9][9]bool{}
  for i := 0; i < 9; i++ {
    for j := 0; j < 9; j++ {
      num := board[i][j] - byte('1')
      if num < 0 || num > 9 {
        continue
      }
      k := i/3*3 + j/3
      if row[i][num] || col[j][num] || sub[k][num] {
        return false
      }
      row[i][num] = true
      col[j][num] = true
      sub[k][num] = true
    }
  }
  return true
}
function isValidSudoku(board: string[][]): boolean {
  const row: boolean[][] = Array.from({ length: 9 }, () =>
    Array.from({ length: 9 }, () => false),
  );
  const col: boolean[][] = Array.from({ length: 9 }, () =>
    Array.from({ length: 9 }, () => false),
  );
  const sub: boolean[][] = Array.from({ length: 9 }, () =>
    Array.from({ length: 9 }, () => false),
  );
  for (let i = 0; i < 9; ++i) {
    for (let j = 0; j < 9; ++j) {
      const num = board[i][j].charCodeAt(0) - '1'.charCodeAt(0);
      if (num < 0 || num > 8) {
        continue;
      }
      const k = Math.floor(i / 3) * 3 + Math.floor(j / 3);
      if (row[i][num] || col[j][num] || sub[k][num]) {
        return false;
      }
      row[i][num] = true;
      col[j][num] = true;
      sub[k][num] = true;
    }
  }
  return true;
}
/**
 * @param {character[][]} board
 * @return {boolean}
 */
var isValidSudoku = function (board) {
  const row = [...Array(9)].map(() => Array(9).fill(false));
  const col = [...Array(9)].map(() => Array(9).fill(false));
  const sub = [...Array(9)].map(() => Array(9).fill(false));
  for (let i = 0; i < 9; ++i) {
    for (let j = 0; j < 9; ++j) {
      const num = board[i][j].charCodeAt() - '1'.charCodeAt();
      if (num < 0 || num > 8) {
        continue;
      }
      const k = Math.floor(i / 3) * 3 + Math.floor(j / 3);
      if (row[i][num] || col[j][num] || sub[k][num]) {
        return false;
      }
      row[i][num] = true;
      col[j][num] = true;
      sub[k][num] = true;
    }
  }
  return true;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文