LeetCode
Write a program to solve a Sudoku puzzle by filling the empty cells.
Empty cells are indicated by the character
'.'
.
You may assume that there will be only one unique solution.

A sudoku puzzle...

...and its solution numbers marked in red.
Solution: declare a function called isValid used to check if num from 1->9 will not conflict with nums which were already existed in the board, if it isValid, then recursively call solved function to check if the board can be finally filled.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Write a program to solve a Sudoku puzzle by filling the empty cells. | |
Empty cells are indicated by the character '.'. | |
You may assume that there will be only one unique solution. | |
*/ | |
public class SudokuSolver { | |
public void solveSudoku(char[][] board) { | |
if (board==null||board.length==0){ | |
return; | |
} | |
solved(board); | |
} | |
private boolean solved(char[][] board){ | |
for(int i=0; i<board.length; i++){ | |
for (int j=0; j<board[0].length; j++){ | |
if (board[i][j]=='.'){ | |
for (char num='1'; num<='9'; num++){ | |
if(isValid(board, i, j, num)){ | |
// no conflict | |
board[i][j]=num; | |
if (solved(board)){ | |
return true; | |
} | |
else{ | |
board[i][j]='.'; | |
} | |
} | |
} | |
// if no proper number found, return false | |
return false; | |
} | |
} | |
} | |
return true; | |
} | |
private boolean isValid(char[][] board, int i, int j, char c){ | |
// check column | |
for (int row=0; row<9; row++){ | |
if (board[row][j]==c){ | |
return false; | |
} | |
} | |
// check row | |
for (int col=0; col<9; col++){ | |
if (board[i][col]==c){ | |
return false; | |
} | |
} | |
// check block | |
for(int row=i/3*3; row<i/3*3+3; row++){ | |
for (int col=j/3*3; col<j/3*3+3; col++){ | |
if (board[row][col]==c){ | |
return false; | |
} | |
} | |
} | |
return true; | |
} | |
} | |
No comments:
Post a Comment