36. 有效的数独

请你判断一个 9x9 的数独是否有效。只需要 根据以下规则 ,验证已经填入的数字是否有效即可。

  1. 数字 1-9 在每一行只能出现一次。
  2. 数字 1-9 在每一列只能出现一次。
  3. 数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。(请参考示例图)

数独部分空格内已填入了数字,空白格用 ‘.’ 表示。
注意:

  • 一个有效的数独(部分已被填充)不一定是可解的。
  • 只需要根据以上规则,验证已经填入的数字是否有效即可。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-sudoku
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

@Test
  void contextLoads() {
    char[][] 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'}};
    System.out.println(isValidSudoku(board));
  }

  private Boolean isValidSudoku(char[][] board) {
    Map<Character, Integer> colMap = new HashMap<>();
    Map<Character, Integer> rowMap = new HashMap<>();
    Map<String, HashMap<Character, Integer>> boxMap = new HashMap<>();
    for (int i = 0; i < 9; i++) {
      int i1 = i / 3;
      for (int j = 0; j < 9; j++) {
        Character col = board[i][j];
        if (!col.equals('.')) {
          int j1 = j / 3;
          String subKey = i1 + String.valueOf(j1);
          Map<Character, Integer> subBoxMap = boxMap.get(subKey);
          if (subBoxMap == null) {
            HashMap<Character, Integer> subMap = new HashMap<>();
            subMap.put(col, 1);
            boxMap.put(subKey, subMap);

          } else if (subBoxMap.get(col) != null) {
            return false;
          } else {
            subBoxMap.put(col, 1);
          }
        }

        if (!col.equals('.')) {
          Integer integer = colMap.get(col);
          if (integer != null) {
            return false;
          } else {
            colMap.put(col, 1);
          }
        }
        Character row = board[j][i];
        if (!row.equals('.')) {
          Integer integer = rowMap.get(row);
          if (integer != null) {
            return false;
          } else {
            rowMap.put(row, 1);
          }
        }
        if (j == 8) {
          rowMap.clear();
          colMap.clear();
        }
      }
    }
    return true;
  }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值