等级 5 · 橙色腰带

需要:

X翼

概要

鹤 使用两个相同数字的共轭对:一个在方框中,一个在直线上。这两对通过一个共享的单元格连接,形成一种模式,其中两个尾部单元格中的一个必须包含该数字。

工作原理

  1. 在一个宫内找到一个数字,该数字恰好出现两次,形成共轭对。
  2. 在同一行或同一列中,为同一个数字找到另一个共轭对。
  3. 这两个共轭对必须恰好共享一个单元格(连接点)。
  4. 从同时看到两个尾端单元格(非共享端点)的单元格中排除该数字。

示例

寻找鹤。

1

Find a box and a line that each have exactly 2 cells with candidate 7.

2

Box 9 has a conjugate pair, and column 1 has a conjugate pair for digit 7.

3

These pairs are connected through row 7, forming a Crane pattern.

4

Either r8c7 or r8c1 must be 7. So these cells seeing both tails cannot keep 7: r8c4 and r8c5.

5

Remove 7 from the cells that see both r8c7 and r8c1: r8c4 and r8c5.

6

应用该技术后的结果。

技巧与模式

  • 鹤 与 Skyscraper 和 Two-String Kite 密切相关——这三种技巧都使用两个共轭对,并通过一个共享单元连接。消除的目标是那些能同时看到 '鹤 臂' 两端的单元格。寻找在方块和行中都恰好出现两次的数字。