leetcode:Valid Sudoku and Sudoku Solver
Question 1(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 '.' . Question 2(Sudoku Solver) : 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. What‘s the difference between above two problems? The rule of Sudoku: 1. Each row must have the number 1-9 occuring just once. 2. Each column must have the number 1-9 occuring just once