Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit cc99a59

Browse files
aQuaaQua
authored andcommitted
finish Problem 36
1 parent 203c155 commit cc99a59

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Algorithms/0036.valid-sudoku/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ Note:
1212
A valid Sudoku board (partially filled) is not necessarily solvable. Only the filled cells need to be validated.
1313

1414
## 解题思路
15+
数独的规则很简单:
16+
1. 横着的9个数,不能重复
17+
1. 竖着的9个数,不能重复
18+
1. 3×3小方块中的9个数,也不能重复
1519

20+
那么解题思路,就是依次检查这三个方面有没有重复。
1621

1722
## 总结
1823

0 commit comments

Comments
 (0)