苏德科克

等级 9 · 紫色腰带

概要

苏德科克 利用宫与行(或列)相交的单元格,结合行(或列)和宫中的配套集合。当候选数正确划分时,可以进行多次排除。

工作原理

  1. 在一个宫线交点处找到2-3个单元格,包含N+2个候选数(构成一个AALS)。
  2. 在同一行中宫外找到一个配套集合。
  3. 在同一宫中线外找到另一个配套集合。
  4. 如果候选数在交点与配套集合之间划分,则从其他单元格中排除。

示例

寻找苏德科克。

1

苏德科克

Find the intersection of column 3 and box 7 (2 cells with 4 candidates).

2

苏德科克

Find helper set r1c3 in column 3 (outside box) - an ALS of 1-3 cells whose candidates are a subset of the intersection.

3

苏德科克

Find helper set r8c2 in box 7 (outside column) - an ALS with candidates disjoint from the column helper.

4

苏德科克

Helpers claim all intersection candidates. Eliminate: r5c3 and r7c2.

5

应用该技术后的结果。

技巧与模式

  • 苏德科克 精巧但罕见。相交单元格必须与两个同伴共享候选数。消除可以在模式之外的行和宫中发生。