烟花

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

策略:

烟花

需要:

X翼

概要

烟花 使用一个在行和列交叉处的枢纽单元格,其中某个数字在行和列上都有强链连接。该模式会将数字强制放入特定单元格,从而在其他地方实现排除。

工作原理

  1. 在行和列相交处找到一个枢纽单元格 单元格。
  2. 该数字必须在行中形成共轭对(枢纽 + 一个 单元格)且在列中形成共轭对(枢纽 + 一个 单元格)。
  3. 该数字必须位于枢纽或两个端点单元格中。
  4. 从同时看到两个非枢纽端点的单元格中消除该数字。

示例

寻找烟花。

1

烟花

Found a Firework pattern. Pivot r5c1 at the intersection of Row 5 and Column 1 connects to r5c6 and r4c1.

2

烟花

Digit 5 in Row 5 is confined to r5c1 and r5c6. Digit 5 in Column 1 is confined to r5c1 and r4c1.

3

烟花

Either r5c1 = 5, or both r5c6 and r4c1 contain 5.

4

烟花

These highlighted candidates are seen by the firework pattern and cannot keep 5: r4c2.

5

烟花

Eliminate 5 from r4c2.

6

应用该技术后的结果。

技巧与模式

  • 烟花图案从一行和一列的单一旋转点辐射而出——因此得名。旋转点位于中心,'火花'沿着两条线分布。请寻找在行和列中均恰好出现2次的数字,且它们共享一个单元格。