X-Wing

Level 4 Β· Yellow Belt (Orange Stripe)

Strategy:

Basic Fish

Overview

X-Wing is a fish pattern using two rows and two columns. When a candidate appears in exactly two cells in two different rows, and these four cells share the same two columns, the candidate can be eliminated from other cells in those columns.

How It Works

  1. Find a candidate that appears in exactly two cells in a row.
  2. Find another row where the same candidate appears in exactly two cells in the same columns.
  3. These four cells form a rectangle. The candidate must be in two diagonal corners.
  4. Eliminate the candidate from other cells in those two columns.

Example

Look for X-Wing.

1

X-Wing

Check digit 4 in rows 1 and 8.

2

X-Wing

r1c2 is already filled with 6.

3

X-Wing

r1c3 is already filled with 3.

4

X-Wing

r1c4 is already filled with 5.

5

X-Wing

r1c6 is already filled with 8.

6

X-Wing

r1c7 is already filled with 2.

7

X-Wing

r1c8 is already filled with 9.

8

X-Wing

r1c9 is already filled with 7.

9

X-Wing

r8c2 is already filled with 1.

10

X-Wing

r8c3 is already filled with 5.

11

X-Wing

r8c4 is already filled with 2.

12

X-Wing

r8c6 is already filled with 3.

13

X-Wing

r8c7 is already filled with 9.

14

X-Wing

r8c8 is already filled with 7.

15

X-Wing

r8c9 is already filled with 6.

16

X-Wing

In each of these 2 rows, digit 4 is restricted to the same 2 columns: 1 and 5.

17

X-Wing

That creates a X-Wing: those columns must contain the digit for these rows, so other rows cannot keep it there.

18

X-Wing

These are the extra 4 candidates in columns 1 and 5 that must be removed: r3c1, r9c1, r5c5 and r9c5.

19

X-Wing

Remove 4 from the extra cells in columns 1 and 5: r3c1, r9c1, r5c5 and r9c5.

20

Result after applying the technique.

Tips & Patterns

  • X-Wings work on rows (eliminating from columns) or columns (eliminating from rows).
  • Look for candidates with exactly 2 occurrences per row/column.
  • The pattern forms a rectangle - visualize the 'X' shape.