0003.longest-substring-without-repeating-characters
0004.median-of-two-sorted-arrays
0005.longest-palindromic-substring
0008.string-to-integer-atoi
0010.regular-expression-matching
0011.container-with-most-water
0014.longest-common-prefix
0017.letter-combinations-of-a-phone-number
0019.remove-nth-node-from-end-of-list
0021.merge-two-sorted-lists
0022.generate-parentheses
0023.merge-k-sorted-lists
0025.reverse-nodes-in-k-group
0026.remove-duplicates-from-sorted-array
0030.substring-with-concatenation-of-all-words
0032.longest-valid-parentheses
0033.search-in-rotated-sorted-array
0034.find-first-and-last-position-of-element-in-sorted-array
0035.search-insert-position
0041.first-missing-positive
0060.permutation-sequence
0076.minimum-window-substring
0080.remove-duplicates-from-sorted-array-ii
0081.search-in-rotated-sorted-array-ii
0082.remove-duplicates-from-sorted-list-ii
0083.remove-duplicates-from-sorted-list
0084.largest-rectangle-in-histogram
0092.reverse-linked-list-ii
0093.restore-ip-addresses
0094.binary-tree-inorder-traversal
0095.unique-binary-search-trees-ii
0096.unique-binary-search-trees
0098.validate-binary-search-tree
0099.recover-binary-search-tree
Folders and files Name Name Last commit message
Last commit date
parent directory Jun 24, 2020
View all files
编写一个程序,通过已填充的空格来解决数独问题。
一个数独的解法需遵循如下规则 :
数字 1-9
在每一行只能出现一次。
数字 1-9
在每一列只能出现一次。
数字 1-9
在每一个以粗实线分隔的 3x3
宫内只能出现一次。
空白格用 '.'
表示。
一个数独。
答案被标成红色。
Note:
给定的数独序列只包含数字 1-9
和字符 '.'
。
你可以假设给定的数独只有唯一解。
给定数独永远是 9x9
形式的。
You can’t perform that action at this time.