W翼

等级 6 · 橙色腰带(绿色条纹)

策略:

翅膀

需要:

裸双

概要

W翼 由两个相同的双值单元格通过其中一个候选数的强链连接而成。另一个候选数可以从同时看到这两个双值单元格的单元格中消除。

工作原理

  1. 找到两个候选数相同的双值单元格 {X,Y},它们互不相看。
  2. 找到数字 X(或 Y)的强链,连接的单元格各自能看到其中一个双值单元格。
  3. 如果强链在 X 上,则从同时看到两个双值单元格的单元格中消除 Y。

示例

寻找W翼。

1

W翼

Find two bivalue cells with identical candidates: r2c8 and r8c7 both have { 3, 5 }.

2

W翼

These cells don't see each other, but are connected by a strong link on digit 3.

3

W翼

The strong link is at r2c2-r8c2. If neither bivalue cell has 3, the link forces a contradiction.

4

W翼

Therefore, one of the bivalue cells must be 5. These cells that see both cannot keep 5: r3c7.

5

W翼

Remove 5 from the cells that see both bivalue cells: r3c7.

6

应用该技术后的结果。

技巧与模式

  • W翼相对容易识别,一旦你掌握了模式。首先寻找匹配的双值单元格,然后搜索连接的强链。消除的数字是未参与强链的那个。