leetcode 36. Valid Sudoku

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 36. Valid Sudoku相关的知识,希望对你有一定的参考价值。

鏍囩锛?a href='http://www.mamicode.com/so/1/val' title='val'>val   i++   java   value   code   ++   math   leetcode   ali   

鏁扮嫭


 function isValidSudoku(board) {
      var rows = []//琛?      var cols = [] // 鍒?      var cubes = []//9瀹牸
      for (var i = 0; i < 9; i++) {
        rows.push({})
        cols.push({})
        cubes.push({})
      }
      for (var i = 0; i < 9; i++) { //寰幆琛?        for (var j = 0; j < 9; j++) {//寰幆鍒?          var value = board[i][j]
          if (value != '.') {
            var cubeIndex = 3 * Math.trunc(i / 3) + Math.trunc(j / 3)// 0-8
            if (rows[i][value] || cols[j][value] || cubes[cubeIndex][value]) return false;
            rows[i][value] = true
            cols[j][value] = true
            cubes[cubeIndex][value] = true
          }
        }
      }
      return true;
    }

以上是关于leetcode 36. Valid Sudoku的主要内容,如果未能解决你的问题,请参考以下文章

leetcode36. Valid Sudoku

LeetCode 36. Valid Sudoku

LeetCode36. Valid Sudoku

leetcode36. Valid Sudoku

leetcode?python 36. Valid Sudoku

LeetCode Medium: 36. Valid Sudoku