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-Wings 相對容易辨識,一旦你了解其模式。首先尋找匹配的雙值單元,然後搜尋連接的強鏈。消除的數字是未參與強鏈的那個。