Problem clarification and contract
10%Senior signals
- ✓Clarifies the board encoding (flat array representing a 2x3 grid, with 0 as the blank), confirms which positions are adjacent for sliding, and asks what to return if start already equals target.
- ✓Confirms both boards are guaranteed to contain the same set of tile values (a valid permutation), so the only question is reachability via legal moves.
Staff-level signals
- ◆Asks whether the total configuration space is small enough to enumerate exhaustively, to justify a full-state BFS.
Common red flags
- ×Codes immediately while assuming any arrangement is reachable from any other without confirming or discussing reachability.
