• 36. Valid Sudoku(js)


    36. Valid Sudoku

    Determine if a 9x9 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 9 3x3 sub-boxes of the grid must contain the digits 1-9 without repetition.


    A partially filled sudoku which is valid.

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

    Example 1:

    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
    

    Example 2:

    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.
    题意:每一行排列数字1-9且不能重复,每一列排列1-9且不能重复,每个3X3小方形排列1-9且不重复,验证是否数独
    代码如下:
    /**
     * @param {character[][]} board
     * @return {boolean}
     */
    var isValidSudoku = function(board) {
      var len=board.length;
        if(len===0) return true;
        
        for(var i=0;i<len;i++){
            var row=[];
            var col=[];
            for(var k=0;k<10;k++){
                row[k]=false;
                col[k]=false;
            }
            for(var j=0;j<len;j++){
    // row
                if(board[i][j]!=='.'){
                    if(row[parseInt(board[i][j])-0]){
                        return false;
                    }
                    row[parseInt(board[i][j])-0]=true;
                }
    // col
                if(board[j][i]!=='.'){
                    if(col[parseInt(board[j][i])-0]){
                        return false;
                    }
                    col[parseInt(board[j][i])-0]=true;
                }
            }
        }
    //     cell
        for(var i=0;i<3;i++){
            for(var j=0;j<3;j++){
                var cell=[];
                for(var k=0;k<10;k++){
                    cell[k]=false;
                }
                for(var r=3*i;r<3*i+3;r++){
                    for(var c=3*j;c<3*j+3;c++){
                        if(board[r][c]!=='.'){
                            if(cell[parseInt(board[r][c])-0]){
                                return false;
                            }
                            cell[parseInt(board[r][c])-0]=true;
                        }
                    }
                }
            }
        }
        return true;
    };
  • 相关阅读:
    图解JavaScript原型和原型链
    hash数组快速查找一个字符串中出现最多的字符,并统计出现的次数
    JS中数组和字符串的方法大全
    用js实现排列组合
    js中一个对象当做参数传递时候?
    用JavaScript按一定格式解析出URL 串中所有的参数
    从Object.definedProperty中看vue的双向数据的绑定
    Uncaught (in promise) TypeError:的错误
    vue之生命周期的一点总结
    原子性和原子性操作
  • 原文地址:https://www.cnblogs.com/xingguozhiming/p/10415201.html
Copyright © 2020-2023  润新知