双线风筝
等级 5 · 橙色腰带
策略:
单数字模式概要
双字符串风筝使用两个共轭对来表示单个数字,一个共轭对在一行,另一个在一列,通过一个共享的单元格连接。候选数可以从同时看到两条字符串端点的单元格中排除。
工作原理
- 在一行中找到一个数字的共轭对(恰好出现2次)。
- 在一列中找到另一个相同数字的共轭对。
- 这两个对必须在同一个宫内连接(共享一个单元格,或它们的单元格在同一宫内)。
- 从同时看到两个外端点的单元格中消除该候选数。
示例
寻找双线风筝。
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
应用该技术后的结果。
技巧与模式
- “风筝”由连接框构成,“弦”是行和列的共轭对。弦的两个端点位于不同的框中。寻找在行和列中都恰好出现两次的数字。