puzzle_id string | prompt string | solution string | optimal_moves int64 | difficulty string |
|---|---|---|---|---|
puzzle351 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","B1"],[".",".","B3","H1"],["B2",".",".","H1"],[".","C",".","."]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blockers (... | <solution>
Step 1: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [4,2] -> [3,2]
Step 3: C [3,2] -> [2,2]
Step 4: B3 [2,3] -> [1,3]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle352 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["C",".",".","B4"],["B5",".","B3","."],["B2","B1",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: B4 [2,4] -> [1,4]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle353 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2","B1",".","B4"],[".",".",".","B3"],["B5",".",".","C"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers (... | <solution>
Step 1: B3 [2,4] -> [2,3]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle354 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B1","."],[".",".",".","."],[".","C","H1","B2"],[".",".","H1","B3"]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blockers (... | <solution>
Step 1: C [3,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle355 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B5",".","."],["B4",".","C","."],["B2",".",".","."],["B3","B1",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle356 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1",".",".","."],["C",".","H1","."],[".",".","H1","."],["B2","B3",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: H1 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle357 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B3","."],["B2","C",".","B1"],[".","B4",".","."],[".",".","B5","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: B1 [2,4] -> [1,4]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle358 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B4","B1","C"],[".",".",".","B3"],[".",".",".","."],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (B... | <solution>
Step 1: B3 [2,4] -> [3,4]
Step 2: C [1,4] -> [2,4]
</solution> | 2 | easy |
puzzle359 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B2","C"],[".",".",".","B3"],["H1","H1",".","."],["B1",".",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (... | <solution>
Step 1: B3 [2,4] -> [3,4]
Step 2: C [1,4] -> [2,4]
</solution> | 2 | easy |
puzzle360 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","B4",".","."],["C",".","B3","B2"],[".",".",".","B1"]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: B4 [2,2] -> [1,2]
Step 2: C [3,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle361 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3","C",".","."],[".",".",".","."],[".","B1","B4","."],["B2",".",".","B5"]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (... | <solution>
Step 1: C [1,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle362 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B2",".","B3"],[".",".","B4","B1"],[".",".",".","."],[".","B5","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (... | <solution>
Step 1: B4 [2,3] -> [1,3]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: B1 [2,4] -> [3,4]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle363 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".",".",".","."],["B4",".",".","C"],["B2","B3","B1","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | easy |
puzzle364 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","H1","C"],["B3",".","H1","."],[".",".","B2","B1"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | easy |
puzzle365 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3","B2",".","."],["B4","B1",".","."],[".",".",".","."],[".",".",".","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,4] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle366 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2",".","C","B3"],[".",".",".","."],[".",".",".","B5"],[".",".","B1","B4"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle367 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","C","B4","."],[".",".","B3","."],["B1","B2",".","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: B4 [2,3] -> [1,3]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle368 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1",".","B2","."],[".",".","B4","."],[".",".",".","."],[".","B3",".","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,4] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle369 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","C","."],["H1",".","B3","."],["H1","B2","B1","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: C [1,4] -> [2,4]
</solution> | 2 | easy |
puzzle370 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","C","."],[".",".","B2","B1"],["H1",".","B3","."],["H1",".",".","."]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: B1 [2,4] -> [3,4]
Step 3: C [1,4] -> [2,4]
</solution> | 3 | easy |
puzzle371 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2","B3",".","."],[".",".","C","B5"],[".",".",".","."],[".",".","B4","B1"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: B5 [2,4] -> [1,4]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle372 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2",".",".","B3"],["C","B1",".","."],[".",".","B4","B5"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: B1 [2,2] -> [1,2]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle373 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["H1","H1","C","."],[".",".",".","."],["B3",".",".","."],[".","B2",".","B1"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle374 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","B4"],["B5",".","C","."],["B1","B3",".","."],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle375 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B1",".",".","B3"],[".",".","B2","B4"],[".","C",".","B5"]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blockers (... | <solution>
Step 1: C [4,2] -> [3,2]
Step 2: C [3,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: B3 [2,4] -> [1,4]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle376 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B1",".","."],["C",".",".","."],["B4",".",".","."],["B3",".","B5","B2"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle377 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","C",".","."],[".",".","B4","."],[".","B2","B1","B3"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle378 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B3","."],[".",".",".","."],[".","C",".","."],[".","B1","B2","B4"]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle379 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B2","."],[".","H1","H1","."],["B3",".",".","."],["C","B1",".","."]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers (... | <solution>
Step 1: B3 [3,1] -> [2,1]
Step 2: C [4,1] -> [3,1]
Step 3: C [3,1] -> [3,2]
Step 4: C [3,2] -> [3,3]
Step 5: C [3,3] -> [3,4]
Step 6: C [3,4] -> [2,4]
</solution> | 6 | easy |
puzzle380 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".","B2","."],[".",".","B3","B4"],[".","B1",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (B... | <solution>
Step 1: B4 [2,4] -> [1,4]
Step 2: C [1,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: B3 [2,3] -> [3,3]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle381 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".",".","C","."],[".",".","B4","B2"],["B1",".",".","B3"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle382 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1",".",".","."],[".","B3",".","B4"],[".",".",".","."],["B5",".","B2","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers (... | <solution>
Step 1: B4 [2,4] -> [1,4]
Step 2: C [4,4] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | easy |
puzzle383 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","C",".","."],[".","B1","B3","."],[".",".","B2","B4"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle384 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1","B2",".","C"],[".",".",".","."],["H1","H1",".","."],[".","B3",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | easy |
puzzle385 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","C","."],[".","B2",".","."],["B4",".",".","B1"],[".",".",".","B3"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle386 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B3",".","."],["C","B1","B2","."],[".",".","B5","B4"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: B2 [2,3] -> [1,3]
Step 2: B1 [2,2] -> [3,2]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle387 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3",".","B1","C"],[".",".","B2","."],[".",".",".","."],["B4",".",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | easy |
puzzle388 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B2","."],[".",".","B3","."],[".","B4",".","B1"],[".",".","C","B5"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: B3 [2,3] -> [2,2]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle389 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2","B4",".","."],[".","B5","C","."],[".","B1",".","."],[".",".","B3","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle390 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".",".",".","."],["B4","B1","B3","."],[".","B2",".","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,4] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle391 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3",".",".","B5"],["C",".",".","."],["B1",".","B2","."],[".",".",".","B4"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle392 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".","B2","."],[".","B3",".","."],[".",".","B1","."],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: B2 [1,3] -> [2,3]
Step 2: C [1,1] -> [1,2]
Step 3: C [1,2] -> [1,3]
Step 4: C [1,3] -> [1,4]
Step 5: C [1,4] -> [2,4]
</solution> | 5 | easy |
puzzle393 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".","B2","."],[".",".","B5","B1"],[".",".",".","."],[".","B3",".","B4"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: C [1,1] -> [2,1]
Step 2: C [2,1] -> [2,2]
Step 3: B5 [2,3] -> [3,3]
Step 4: C [2,2] -> [2,3]
Step 5: B1 [2,4] -> [1,4]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle394 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1","C","B3","."],[".","B2",".","."],[".",".","H1","."],[".",".","H1","."]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (... | <solution>
Step 1: B2 [2,2] -> [3,2]
Step 2: C [1,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle395 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".",".","B4","."],["B1",".",".","."],[".","B2","C","B3"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | easy |
puzzle396 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B5",".","B4","."],[".",".","C","."],[".",".",".","B3"],[".","B1","B2","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle397 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".",".","."],[".",".",".","."],["B4","B3","B2","."],[".",".","B5","B1"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: C [1,1] -> [2,1]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle398 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","B1","B4","."],["C",".",".","B3"],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,1] -> [3,2]
Step 2: C [3,2] -> [3,3]
Step 3: B4 [2,3] -> [1,3]
Step 4: C [3,3] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle399 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B4",".","C","."],[".",".",".","."],[".","B5",".","B3"],["B2","B1",".","."]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle400 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B2",".","B5","."],["C",".",".","B1"],[".",".","B3","."],[".",".",".","B4"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: B1 [2,4] -> [1,4]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle401 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B5",".",".","."],["B2","B3",".","B4"],[".","B1","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle402 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B2",".","B3"],[".","B1",".","."],[".",".",".","C"],[".",".",".","B4"]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | easy |
puzzle403 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","H1","H1","."],[".",".",".","B3"],[".","B2",".","."],["B1",".","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [2,3]
Step 3: B3 [2,4] -> [1,4]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle404 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B1","H1","."],["B3","B2","H1","."],["C",".",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (... | <solution>
Step 1: C [3,1] -> [3,2]
Step 2: C [3,2] -> [3,3]
Step 3: C [3,3] -> [3,4]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | easy |
puzzle405 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3",".",".","B4"],["B1",".","B2","."],[".",".",".","."],[".",".","C","B5"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | easy |
puzzle406 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["C",".",".","B3"],[".","B1",".","."],[".","B2",".","B4"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: B3 [2,4] -> [1,4]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle407 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B2",".","."],[".","B1",".","."],["C",".",".","B4"],[".",".",".","B3"]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,1] -> [3,2]
Step 2: C [3,2] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle408 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3","B4",".","B5"],[".",".",".","."],[".",".","C","B2"],[".",".","B1","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blockers (... | <solution>
Step 1: C [3,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle409 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3",".",".","."],["B1",".","C","B5"],[".","B4",".","."],["B2",".",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (... | <solution>
Step 1: B5 [2,4] -> [1,4]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle410 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".",".",".","."],[".","B1",".","B3"],["B4",".","C","B2"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle411 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B4",".","."],[".",".",".","."],[".","B1","B2","."],["C",".","B3","."]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,1] -> [3,1]
Step 2: C [3,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle412 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],[".","B5","B3","."],[".","B1","C","B4"],["B2",".",".","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blockers (... | <solution>
Step 1: B4 [3,4] -> [4,4]
Step 2: C [3,3] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | easy |
puzzle413 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C","B2",".","."],[".","B1","B3","B4"],[".",".",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (B... | <solution>
Step 1: B4 [2,4] -> [1,4]
Step 2: C [1,1] -> [2,1]
Step 3: C [2,1] -> [3,1]
Step 4: C [3,1] -> [3,2]
Step 5: C [3,2] -> [3,3]
Step 6: C [3,3] -> [3,4]
Step 7: C [3,4] -> [2,4]
</solution> | 7 | easy |
puzzle414 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","B3"],["B1",".",".","."],[".","B5",".","C"],["B2",".","B4","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers (... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | easy |
puzzle415 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B3","."],[".",".","B2","."],[".","C",".","B4"],[".",".",".","B1"]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blockers (B... | <solution>
Step 1: B2 [2,3] -> [3,3]
Step 2: C [3,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle416 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B4",".",".","."],[".","C",".","."],[".",".","B2","."],["B1",".",".","B3"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle417 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B3","."],["B4",".","B1","."],[".",".","C","."],[".","B2",".","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,3] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle418 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","C"],["B3",".",".","."],[".",".","B4","B1"],[".","B5","B2","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | easy |
puzzle419 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B4","B2"],[".",".","C","."],["B3",".",".","B1"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle420 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","C","B1","."],[".",".",".","."],["B3",".",".","."],["B4",".",".","B2"]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle421 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B3","C",".","."],["B1","B2",".","."],[".",".","H1","H1"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle422 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["H1",".",".","."],["H1","C",".","."],["B2",".",".","."],["B3",".","B1","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle423 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","C","H1"],[".",".",".","H1"],["B2",".",".","B3"],[".",".",".","B1"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [3,3]
Step 3: H1 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 4: H1 [(1, 3), (2, 3)] -> [(1, 2), (2, 2)]
Step 5: C [3,3] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle424 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B1",".","B2"],["B4",".",".","B3"],["C",".",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,1] -> [3,2]
Step 2: C [3,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: B3 [2,4] -> [3,4]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle425 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B4",".",".","B2"],[".",".",".","B3"],[".",".","B1","."],[".",".","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,3] -> [4,4]
Step 2: C [4,4] -> [3,4]
Step 3: B3 [2,4] -> [2,3]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | easy |
puzzle426 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".",".","B1"],[".",".","H1","H1"],["B3",".","B2","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: B2 [3,3] -> [4,3]
Step 2: H1 [(2, 3), (2, 4)] -> [(3, 3), (3, 4)]
Step 3: C [1,1] -> [2,1]
Step 4: C [2,1] -> [2,2]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle427 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","C",".","."],[".",".",".","B1"],["B3",".","H1","B2"],[".",".","H1","."]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (... | <solution>
Step 1: C [1,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: B1 [2,4] -> [1,4]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle428 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B3",".",".","."],["C","B1","B4","."],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: B3 [2,1] -> [1,1]
Step 2: C [3,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle429 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1","B3","B5","."],[".",".",".","."],[".",".","B2","."],["C",".",".","B4"]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers (... | <solution>
Step 1: C [4,1] -> [3,1]
Step 2: C [3,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle430 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B3","B2","."],[".","B1",".","."],["B4",".",".","."],[".",".","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [4,3] -> [3,3]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle431 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B3",".","B2","."],[".",".","C","."],[".",".","B1","."],[".",".",".","B4"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle432 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","C","B4"],[".",".",".","."],[".",".",".","."],[".","B1","B2","B3"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle433 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","H1","H1"],["B3",".","B1","."],["B2",".",".","."],[".",".",".","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers (... | <solution>
Step 1: C [4,4] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | easy |
puzzle434 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".",".","."],["B3",".","B1","."],[".",".","B2","."],[".",".",".","B4"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,1] -> [1,2]
Step 2: C [1,2] -> [1,3]
Step 3: C [1,3] -> [1,4]
Step 4: C [1,4] -> [2,4]
</solution> | 4 | easy |
puzzle435 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","H1","."],["C","B3","H1","."],[".",".",".","B1"],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: H1 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 2: H1 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 3: B3 [2,2] -> [1,2]
Step 4: C [2,1] -> [2,2]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle436 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".",".","."],[".",".","B2","."],["B1",".",".","."],["B3","B5","B4","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: C [1,1] -> [1,2]
Step 2: C [1,2] -> [1,3]
Step 3: C [1,3] -> [1,4]
Step 4: C [1,4] -> [2,4]
</solution> | 4 | easy |
puzzle437 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".","B4","."],["B2",".","B1","."],["C",".",".","."],[".",".","B3","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [3,1] -> [3,2]
Step 2: C [3,2] -> [3,3]
Step 3: C [3,3] -> [3,4]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | easy |
puzzle438 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,3] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B4","B2","C","."],[".","B3","B1","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | easy |
puzzle439 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B4",".",".","B2"],["C",".",".","B3"],[".","B1",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: B3 [2,4] -> [3,4]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle440 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B4","C",".","."],["B3",".","B2","."],["B1",".",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,2] -> [1,3]
Step 2: C [1,3] -> [1,4]
Step 3: C [1,4] -> [2,4]
</solution> | 3 | easy |
puzzle441 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,4] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","C"],[".",".",".","."],["B2",".","B3","B1"],[".","B4",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers (B... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | easy |
puzzle442 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [4,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","H1","B3","."],[".","H1",".","B1"],[".",".",".","B2"],["C",".",".","."]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers (... | <solution>
Step 1: C [4,1] -> [3,1]
Step 2: C [3,1] -> [3,2]
Step 3: C [3,2] -> [3,3]
Step 4: C [3,3] -> [2,3]
Step 5: B1 [2,4] -> [1,4]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle443 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","B1"],["C",".",".","."],[".","B2","B4","."],[".",".",".","B3"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,1] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle444 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","."],["B1","C",".","."],[".",".","B2","."],["B4",".",".","B3"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: C [2,2] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | easy |
puzzle445 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["C",".","B2","."],[".",".","B3","."],[".","H1",".","."],[".","H1",".","B1"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers (... | <solution>
Step 1: C [1,1] -> [2,1]
Step 2: C [2,1] -> [2,2]
Step 3: B3 [2,3] -> [3,3]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
puzzle446 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [3,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".",".",".","B2"],[".",".",".","B1"],["C",".",".","B3"],[".","B4",".","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers (B... | <solution>
Step 1: B2 [1,4] -> [1,3]
Step 2: C [3,1] -> [2,1]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: B1 [2,4] -> [1,4]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | easy |
puzzle447 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[[".","B1","B3","."],["C",".","B2","."],["B4",".",".","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (B... | <solution>
Step 1: B2 [2,3] -> [3,3]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle448 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1",".","B4","."],[".","C","B2","."],[".",".",".","B3"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers (B... | <solution>
Step 1: B2 [2,3] -> [3,3]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | easy |
puzzle449 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [2,1] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1",".",".","."],["C","H1",".","."],[".","H1",".","B3"],[".",".",".","B2"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers (... | <solution>
Step 1: H1 [(2, 2), (3, 2)] -> [(3, 2), (4, 2)]
Step 2: C [2,1] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | easy |
puzzle450 | Task: Solve this 4x4 Rush Hour puzzle - move car "C" from position [1,2] to the TARGET at position [2,4] given the position of the blockers below.
Current Grid State (JSON format):
[["B1","C","B4","."],[".",".","B2","."],[".",".","B3","."],[".","B5",".","."]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blockers (... | <solution>
Step 1: B2 [2,3] -> [2,2]
Step 2: B2 [2,2] -> [3,2]
Step 3: C [1,2] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.