What You're Up Against
Sand Shape Level 46 presents a 4x4 grid with four gems: green circles at (2,1) and (4,3), and red triangles at (2,3) and (3,1). Your goal is to draw walls that split the grid into two separate, fully enclosed regions—each holding one green and one red gem. No cell can be left unassigned, and walls cannot overlap or cross existing ones. A 3-minute timer adds urgency.
Beating Sand Shape Level 46
- Enclose the green gem at (2,1) and red gem at (3,1) by drawing: • A horizontal wall from (3,1) to (3,2), • A vertical wall from (2,2) to (3,2), • A horizontal wall from (2,1) to (2,2). This forms a 2×2 shape covering cells (2,1), (2,2), (3,1), and (3,2).
- Enclose the red gem at (2,3) and green gem at (4,3) by drawing: • A horizontal wall from (4,2) to (4,3), • A vertical wall from (3,3) to (4,3), • A horizontal wall from (3,2) to (3,3), • A vertical wall from (2,3) to (3,3). This locks the remaining cells into a second valid shape.
Doing It Faster
- Prioritize adjacent gem pairs first—the (2,1)/(3,1) pair is easiest to isolate.
- Use the grid’s natural edges and fixed borders as free walls to minimize drawing.
- Visualize both shapes before placing any line—this walkthrough saves time on corrections.
- The solution hinges on clean, non-overlapping walls; avoid mid-grid guesswork.
Where Players Slip Up
- Leaving cells unenclosed or creating an open shape (no color change = invalid).
- Placing walls that intersect or overlap—only orthogonal, edge-aligned walls are allowed.
- Assigning two gems of the same color to one region—or omitting a gem entirely.
- Forgetting that every cell must belong to exactly one completed shape in Sand Shape Level 46.