等級 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 緊密相關——三者皆利用兩個共軛對,透過一個共享單元連接。消除目標為能同時看到 '鶴 臂' 兩端點的格子。尋找在方塊與線條中皆恰好出現兩次的數字。