Skip to content

Commit 224cb3f

Browse files
committed
Create README - LeetHub
1 parent ae91dac commit 224cb3f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

0037-sudoku-solver/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<h2><a href="https://leetcode.com/problems/sudoku-solver/">37. Sudoku Solver</a></h2><h3>Hard</h3><hr><div><p>Write a program to solve a Sudoku puzzle by filling the empty cells.</p>
2+
3+
<p>A sudoku solution must satisfy <strong>all of the following rules</strong>:</p>
4+
5+
<ol>
6+
<li>Each of the digits <code>1-9</code> must occur exactly once in each row.</li>
7+
<li>Each of the digits <code>1-9</code> must occur exactly once in each column.</li>
8+
<li>Each of the digits <code>1-9</code> must occur exactly once in each of the 9 <code>3x3</code> sub-boxes of the grid.</li>
9+
</ol>
10+
11+
<p>The <code>'.'</code> character indicates empty cells.</p>
12+
13+
<p>&nbsp;</p>
14+
<p><strong class="example">Example 1:</strong></p>
15+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Sudoku-by-L2G-20050714.svg/250px-Sudoku-by-L2G-20050714.svg.png" style="height:250px; width:250px">
16+
<pre><strong>Input:</strong> board = [["5","3",".",".","7",".",".",".","."],["6",".",".","1","9","5",".",".","."],[".","9","8",".",".",".",".","6","."],["8",".",".",".","6",".",".",".","3"],["4",".",".","8",".","3",".",".","1"],["7",".",".",".","2",".",".",".","6"],[".","6",".",".",".",".","2","8","."],[".",".",".","4","1","9",".",".","5"],[".",".",".",".","8",".",".","7","9"]]
17+
<strong>Output:</strong> [["5","3","4","6","7","8","9","1","2"],["6","7","2","1","9","5","3","4","8"],["1","9","8","3","4","2","5","6","7"],["8","5","9","7","6","1","4","2","3"],["4","2","6","8","5","3","7","9","1"],["7","1","3","9","2","4","8","5","6"],["9","6","1","5","3","7","2","8","4"],["2","8","7","4","1","9","6","3","5"],["3","4","5","2","8","6","1","7","9"]]
18+
<strong>Explanation:</strong>&nbsp;The input board is shown above and the only valid solution is shown below:
19+
20+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Sudoku-by-L2G-20050714_solution.svg/250px-Sudoku-by-L2G-20050714_solution.svg.png" style="height:250px; width:250px">
21+
</pre>
22+
23+
<p>&nbsp;</p>
24+
<p><strong>Constraints:</strong></p>
25+
26+
<ul>
27+
<li><code>board.length == 9</code></li>
28+
<li><code>board[i].length == 9</code></li>
29+
<li><code>board[i][j]</code> is a digit or <code>'.'</code>.</li>
30+
<li>It is <strong>guaranteed</strong> that the input board has only one solution.</li>
31+
</ul>
32+
</div>

0 commit comments

Comments
 (0)