Puzzle Detail
Rush Hour Vehicles Medium — Set 63
Medium Rush Hour — vehicles #63
Show solution
[{"blockId":"A","direction":"D","steps":2,"description":"Slide Car A down 2."},{"blockId":"B","direction":"R","steps":2,"description":"Slide Car B right 2."},{"blockId":"C","direction":"U","steps":1,"description":"Slide Truck C up 1."},{"blockId":"X","direction":"R","steps":4,"description":"Slide X right to exit."}]
- Title
- Medium Rush Hour — vehicles #63
- Blocks
- {"id":"X","label":"X (Red Car)","orientation":"H","size":2,"row":2,"col":0}
- {"id":"A","label":"Car A","orientation":"V","size":2,"row":0,"col":2}
- {"id":"B","label":"Car B","orientation":"H","size":2,"row":3,"col":2}
- {"id":"C","label":"Truck C","orientation":"V","size":3,"row":0,"col":4}
- TargetBlock
- X
- ExitEdge
- right
- ExitPosition
- 2
- Solution
- {"blockId":"A","direction":"D","steps":2,"description":"Slide Car A down 2."}
- {"blockId":"B","direction":"R","steps":2,"description":"Slide Car B right 2."}
- {"blockId":"C","direction":"U","steps":1,"description":"Slide Truck C up 1."}
- {"blockId":"X","direction":"R","steps":4,"description":"Slide X right to exit."}
- SolutionMoveCount
- 4
- Question
- What is the minimum number of moves to free the target block? Write the move sequence using the format: Block ID + Direction + Steps (e.g. "A-Right-2").
- Instructions
- Slide the vehicle blocks to create a clear path for the Red Car (X) to exit through the right side of the board. Vehicles can only move forward or backward along their orientation.
- Legend
- Block coordinates use (row, col) from the top-left corner (row 0, col 0).
- H = horizontal block, V = vertical block.
- Moves: U=Up, D=Down, L=Left, R=Right, followed by number of spaces.