zoukankan      html  css  js  c++  java
  • 【LeetCode】 Valid Sudoku

    Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.

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


    A partially filled sudoku which is valid.

    java code :

     

    public class Solution {
        public boolean isValidSudoku(char[][] board) {
            // IMPORTANT: Please reset any member data you declared, as
            // the same Solution instance will be reused for each test case.
             HashSet<Character> hash = new HashSet<Character>();
    		 if(board == null)
    			 return true;
    		 for(int i = 0; i < board.length; i++)
    		 {
    			 hash.clear();
    			 for(int j = 0; j < board[0].length; j++)
    			 {
    				 if(board[i][j] == '.')
    					 continue;
    				 if(!(board[i][j] >= '1' && board[i][j] <= '9'))
    					 return false;
    				 if(hash.isEmpty() || !hash.contains(board[i][j]))
    					 hash.add(board[i][j]);
    				 else return false;
    			 }
    		 }
    		 hash.clear();
    		 for(int i = 0; i < board[0].length; i++)
    		 {
    			 hash.clear();
    			 for(int j = 0; j < board.length; j++)
    			 {
    				 if(board[j][i] == '.')
    					 continue;
    				 if(!(board[j][i] >= '1' && board[j][i] <= '9'))
    					 return false;
    				 if(hash.isEmpty() || !hash.contains(board[j][i]))
    					 hash.add(board[j][i]);
    				 else return false;
    			 }
    		 }
    		 hash.clear();
    		 
    		 for(int i = 0; i < 9; i += 3)
    		 {
    			 
    			 for(int j = 0; j < 9; j += 3)
    			 {
    				 hash.clear();
    				 for(int row = 0; row < 3; row++)
    				 {
    					 for(int col = 0; col < 3; col++)
    					 {
    						 if(board[i+row][j+col] == '.')
    							 continue;
    						 if(!(board[i+row][j+col] >= '1' && board[i+row][j+col] <= '9'))
    							 return false;
    						 if(hash.isEmpty() || !hash.contains(board[i+row][j+col]))
    							 hash.add(board[i+row][j+col]);
    						 else return false;
    					 }
    				 }
    			 }
    		 }
    		 hash = null;
    		 return true;
        }
    }


  • 相关阅读:
    5.CSS的引入方式
    4 CSS文本属性
    3.CSS字体属性
    CSS基础选择器总结
    详细介绍jQuery.outerWidth() 函数具体用法
    highcharts x轴中文刻度太长换行
    css 兼容ie8 rgba()用法
    JavaScript常用定义和方法
    12 个 CSS 高级技巧汇总
    javascript 经典问题汇总
  • 原文地址:https://www.cnblogs.com/riskyer/p/3400474.html
Copyright © 2011-2022 走看看