36. Valid Sudoku

public boolean isValidSudoku(char[][] board) {     for ( int i = 0 ; i< 9 ; i++){         HashSet<Character> rows = new HashSet<Character>();         HashSet<Character> columns = new HashSet<Character
相關文章
相關標籤/搜索