What You're Up Against
Sand Shape Level 162 presents an irregular 'H'-shaped grid with six gems: two blue diamonds (top-left and top-right), two red flames (middle-right and just left of it), and two green leaves (middle-left and bottom-left). Your goal is to draw one continuous path that carves out a first shape containing one of each gem type; the remainder automatically forms the second valid shape. You have 2 minutes 30 seconds—and every shape must contain exactly one red flame, one blue diamond, and one green leaf.
Beating Sand Shape Level 162
- Begin at the blue diamond at (Row 0, Column 0).
- Move right to (0,1), then down to (1,1), right to (1,2), down to (2,2), right to (2,3) — where the red flame sits.
- Continue down to (3,3), left to (3,2), then up to enclose the green leaf at (2,1).
- Close the loop to finalize the first shape — now containing the blue diamond (0,0), red flame (2,3), and green leaf (2,1).
- The remaining area forms the second shape with the other blue diamond (0,4), red flame (2,4), and green leaf (3,1). Success triggers fireworks.
Doing It Faster
- Scan gem positions first: identify which three belong together before drawing.
- Use the grid’s natural symmetry—the ‘H’ arms help guide clean vertical/horizontal strokes.
- Avoid lifting the brush mid-path; this walkthrough relies on one unbroken line for reliable split logic.
- Zoom in only when verifying gem inclusion—don’t waste time over-refining edges.
Where Players Slip Up
- Drawing a path that isolates a gem or includes duplicates (e.g., two red flames in one shape) triggers instant ‘X’ feedback.
- Creating disconnected or non-contiguous regions invalidates the split—even if gem counts look right.
- Starting from the wrong gem (e.g., top-right blue diamond) often leads to impossible loops within the time limit.
- Rushing step 3 causes missed green leaf enclosure—this is the most common failure point in the Sand Shape Level 162 solution.