-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9157b0
commit d63f78a
Showing
6 changed files
with
79 additions
and
73 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,6 @@ | |
|
||
## 标签 | ||
|
||
#Level1 | ||
#Level/1 | ||
|
||
> [SudokuWiki.org - Getting Started](https://www.sudokuwiki.org/Getting_Started) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# 分类 | ||
# 显性数组 | ||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
## 目录 | ||
|
||
- [组合技巧](#%E7%BB%84%E5%90%88%E6%8A%80%E5%B7%A7) | ||
- [原理](#%E5%8E%9F%E7%90%86) | ||
- [分类](#%E5%88%86%E7%B1%BB) | ||
|
||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
|
||
# 组合技巧 | ||
## 原理 | ||
|
||
- [[摒除法]] | ||
- 技巧拓展 | ||
- [[唯余法]]:拓展候选格数 | ||
|
||
## 分类 | ||
|
||
- 显性数对 | ||
- [[显性数对]] | ||
- 显性三数组 | ||
- 显性四数组 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
## 目录 | ||
|
||
- [显性数对](#%E6%98%BE%E6%80%A7%E6%95%B0%E5%AF%B9) | ||
- [原理](#%E5%8E%9F%E7%90%86) | ||
- [标签](#%E6%A0%87%E7%AD%BE) | ||
|
||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
|
||
# 显性数对 | ||
|
||
## 原理 | ||
|
||
因为: | ||
- 单一区域`Region`内 | ||
- 恰好仅剩余 1 个数字`X`、 1 个数字`Y` | ||
- 单元格`Cell1`只可填入的候选数字`XY` | ||
- 单元格`Cell2`只可填入的候选数字`XY` | ||
|
||
所以: | ||
- 单一区域`Region`内 | ||
- 除`Cell 1`、`Cell 2`的其他单元格 | ||
- 必不填入`X` | ||
- 必不填入`Y` | ||
> 反证法:如果其他单元格填入`X`,则`Cell 1`、`Cell 2`都需填入`Y`,即 2 格仅有 1 个数可填,无法满足,矛盾;其他情况类似。 | ||
## 标签 | ||
|
||
#Level/2 | ||
|
||
> [SudokuWiki.org - Naked Pairs](https://www.sudokuwiki.org/Naked_Candidates#NP) |