雙線風箏

等級 5 · 橙色腰帶

概要

雙線鷹鷹使用兩個共軛對來表示單個數字,其中一個對位於一行,另一個對位於一列,通過一個共享的方格相連。候選數可以從同時看到兩條線端點的單元格中排除。

工作原理

  1. 在一行中找到一個數字的共軛對(恰好出現2次)。
  2. 在一列中找到另一個相同數字的共軛對。
  3. 這兩對必須在一個宮內連結(共用一個單元格或位於同一個宮內)。
  4. 從同時看到兩個外端點的單元格中消除該候選數。

範例

尋找雙線風箏。

1

雙線風箏

Digit 2 appears exactly twice in row 3 and exactly twice in column 1.

2

雙線風箏

Row 3 and column 1 each form a conjugate pair for digit 2.

3

雙線風箏

One endpoint from each pair shares box 1, forming the kite's joint.

4

雙線風箏

The tails are r3c9 and r8c1. Since one tail must be 2, these cells that see both tails cannot keep 2: r8c9.

5

雙線風箏

Remove 2 from the cells that see both r3c9 and r8c1: r8c9.

6

應用該技術後的結果。

技巧與模式

  • 「鷂」是由連結方塊所形成,而「線」則是行列共軛對。線的兩端點位於不同的方塊中。尋找在行列中恰好出現兩次的數字。