puzzle_id string | prompt string | solution string | optimal_moves int64 | difficulty string |
|---|---|---|---|---|
puzzle3051 | 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):
[["H3","H3","H1","H1"],[".",".",".","H4"],[".",".","C","H4"],["H2","H2",".","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: C [3,3] -> [2,3]
Step 2: H4 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3052 | 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):
[["H2","H2",".","C"],[".",".",".","."],[".","H1","H1","."],[".","H3","H3","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blockers ... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | hard |
puzzle3053 | 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):
[[".",".",".","."],["H2","H2","H1","H1"],[".","H3","H3","C"],[".",".","H4","H4"]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: H1 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | hard |
puzzle3054 | 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","."],[".",".","H3","H3"],[".","H4","H4","H2"],["H1","H1",".","H2"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blocker... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: H3 [(2, 3), (2, 4)] -> [(2, 2), (2, 3)]
Step 3: C [1,4] -> [2,4]
</solution> | 3 | hard |
puzzle3055 | 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):
[["H3",".","C","."],["H3",".",".","."],["H1","H4","H2","."],["H1","H4","H2","."]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blocker... | <solution>
Step 1: C [1,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | hard |
puzzle3056 | 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):
[["H3",".",".","."],["H3",".","C","H2"],[".","H4","H4","H2"],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | hard |
puzzle3057 | 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",".","H2","H2"],["H1",".",".","."],["H1",".",".","."],[".",".","H3","H3"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers ... | <solution>
Step 1: C [1,1] -> [1,2]
Step 2: C [1,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3058 | 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","."],[".",".","B1","H1"],[".","H2","H2","H1"],[".",".","H3","H3"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blockers... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: H3 [(4, 3), (4, 4)] -> [(4, 2), (4, 3)]
Step 3: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 4: C [1,4] -> [2,4]
</solution> | 4 | hard |
puzzle3059 | 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):
[[".","H2","H2","B1"],["B2",".",".","H1"],["H3",".",".","H1"],["H3",".",".","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blocker... | <solution>
Step 1: H1 [(2, 4), (3, 4)] -> [(2, 3), (3, 3)]
Step 2: C [4,4] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | hard |
puzzle3060 | 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):
[["H1","H1","H3","H3"],[".",".","H2","B2"],[".",".","H2","."],[".","C","B1","."]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blocker... | <solution>
Step 1: B2 [2,4] -> [3,4]
Step 2: H2 [(2, 3), (3, 3)] -> [(2, 2), (3, 2)]
Step 3: H2 [(2, 2), (3, 2)] -> [(2, 1), (3, 1)]
Step 4: C [4,2] -> [3,2]
Step 5: C [3,2] -> [2,2]
Step 6: C [2,2] -> [2,3]
Step 7: C [2,3] -> [2,4]
</solution> | 7 | hard |
puzzle3061 | 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):
[["H1","H1",".","H2"],[".",".","C","H2"],[".","H3","B2","."],["B1","H3",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 2: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3062 | 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",".","."],["B1",".",".","."],["H2","H3",".","."],["H2","H3",".","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 | hard |
puzzle3063 | 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","."],[".","C","H1","."],[".","H3","H3","H4"],[".","H2","H2","H4"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blocker... | <solution>
Step 1: H2 [(4, 2), (4, 3)] -> [(4, 1), (4, 2)]
Step 2: H3 [(3, 2), (3, 3)] -> [(3, 1), (3, 2)]
Step 3: H1 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 4: H1 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | hard |
puzzle3064 | 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):
[["H4","H4",".","."],[".",".","H1","."],["H2","C","H1","H3"],["H2",".",".","H3"]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blocker... | <solution>
Step 1: H1 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 2: C [3,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3065 | 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):
[[".","H1","H2","H3"],["B2","H1","H2","H3"],[".","B1",".","C"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: H2 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 2: H2 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 3: H3 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | hard |
puzzle3066 | 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","H1",".","."],["C",".","H3","H3"],[".",".","H2","."],[".",".","H2","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(2, 3), (2, 4)] -> [(1, 3), (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 | hard |
puzzle3067 | 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):
[[".","H4","H4","."],["C","H2","H2","."],[".",".",".","."],["H1","H1","H3","H3"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 2), (2, 3)] -> [(3, 2), (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 | hard |
puzzle3068 | 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):
[[".",".",".","."],["H2","H2",".","."],[".","H4","H1","H3"],["C","H4","H1","H3"]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 1), (2, 2)] -> [(1, 1), (1, 2)]
Step 2: C [4,1] -> [3,1]
Step 3: C [3,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 | hard |
puzzle3069 | 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):
[[".",".","H3","."],["H2",".","H3","H1"],["H2",".",".","H1"],[".",".","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(1, 3), (2, 3)] -> [(1, 2), (2, 2)]
Step 2: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 3: C [4,3] -> [3,3]
Step 4: C [3,3] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | hard |
puzzle3070 | 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):
[[".","H1","H1","."],["H2",".",".","B1"],["H2","C","B2","."],[".",".","H3","H3"]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blocker... | <solution>
Step 1: C [3,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 | hard |
puzzle3071 | 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):
[["H2",".","H1","."],["H2","H3","H1","."],["B1","H3",".","."],[".","C",".","."]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blockers... | <solution>
Step 1: C [4,2] -> [4,3]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [3,4]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | hard |
puzzle3072 | 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):
[["H3",".","H2","H1"],["H3","B2","H2","H1"],[".",".","B1","C"],[".",".",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: B2 [2,2] -> [3,2]
Step 2: H2 [(1, 3), (2, 3)] -> [(1, 2), (2, 2)]
Step 3: H1 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | hard |
puzzle3073 | 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",".",".","H3"],[".","H2",".","H3"],[".","H2",".","."],[".",".","H1","H1"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 2: H3 [(2, 4), (3, 4)] -> [(2, 3), (3, 3)]
Step 3: C [1,1] -> [1,2]
Step 4: C [1,2] -> [1,3]
Step 5: C [1,3] -> [1,4]
Step 6: C [1,4] -> [2,4]
</solution> | 6 | hard |
puzzle3074 | 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):
[[".","H2","H2","."],[".","H3","H1","H1"],[".","H3","C","."],[".",".","B1","B2"]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(1, 2), (1, 3)] -> [(1, 1), (1, 2)]
Step 2: H1 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3075 | 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","H2","H2"],[".","H1",".","."],[".","H1",".","."],["H3","H3",".","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 | hard |
puzzle3076 | 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):
[[".","H2","H2","B1"],[".","B2",".","."],["H3","H1","H1","C"],["H3",".",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3077 | 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):
[[".",".",".","."],["H4",".","H1","H1"],["H4","H2",".","."],["C","H2","H3","H3"]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(3, 2), (4, 2)] -> [(2, 2), (3, 2)]
Step 2: H2 [(2, 2), (3, 2)] -> [(1, 2), (2, 2)]
Step 3: H1 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 4: C [4,1] -> [4,2]
Step 5: C [4,2] -> [3,2]
Step 6: C [3,2] -> [3,3]
Step 7: C [3,3] -> [2,3]
Step 8: C [2,3] -> [2,4]
</solution> | 8 | hard |
puzzle3078 | 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):
[["H3",".",".","B1"],["H3","H1",".","."],["B2","H1",".","H2"],[".","C",".","H2"]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blocker... | <solution>
Step 1: C [4,2] -> [4,3]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3079 | 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):
[["H3","H3",".","."],[".",".","C","."],["H2","H1","H1","."],["H2",".",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers ... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | hard |
puzzle3080 | 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","H2",".","H3"],[".","H2",".","H3"],[".","H1","H1","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blocker... | <solution>
Step 1: H3 [(2, 4), (3, 4)] -> [(2, 3), (3, 3)]
Step 2: C [4,4] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | hard |
puzzle3081 | 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):
[[".",".","H4","H4"],["H3","H3",".","."],["H2","H2",".","H1"],[".","C",".","H1"]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blocker... | <solution>
Step 1: C [4,2] -> [4,3]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3082 | 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",".",".","."],[".",".","H1","H1"],[".","H4","H2","H3"],[".","H4","H2","H3"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blocker... | <solution>
Step 1: H1 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 2: C [1,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 | hard |
puzzle3083 | 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):
[["H3","H2","H2","."],["H3",".",".","."],[".","H4","H4","C"],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3084 | 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",".",".","."],[".","H1","H2","."],["H3","H1","H2","."],["H3",".",".","B1"]]
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 | hard |
puzzle3085 | 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):
[[".","H1",".","H4"],[".","H1",".","H4"],["C",".","H3","."],["H2","H2","H3","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blocker... | <solution>
Step 1: H1 [(1, 2), (2, 2)] -> [(1, 1), (2, 1)]
Step 2: C [3,1] -> [3,2]
Step 3: C [3,2] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: H4 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 6: H4 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 7: C [2,3] -> [2,4]
</solution> | 7 | hard |
puzzle3086 | 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","H2","H2"],[".","H1",".","H3"],[".",".","C","H3"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers ... | <solution>
Step 1: H2 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3087 | 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):
[[".","H2","H3","H3"],["H1","H2",".","."],["H1",".","C","H4"],[".",".",".","H4"]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: C [3,3] -> [2,3]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | hard |
puzzle3088 | 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","B1"],[".",".",".","H2"],["H3",".",".","H2"],["H3",".","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3089 | 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):
[[".",".","H4","H4"],["C","H3","H3","."],["H1","H1",".","H2"],[".",".",".","H2"]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blocker... | <solution>
Step 1: H1 [(3, 1), (3, 2)] -> [(4, 1), (4, 2)]
Step 2: H3 [(2, 2), (2, 3)] -> [(3, 2), (3, 3)]
Step 3: C [2,1] -> [2,2]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | hard |
puzzle3090 | 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):
[["H2","H2","B1","."],[".","C","H1","H1"],[".",".","H3","."],[".",".","H3","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers... | <solution>
Step 1: H3 [(3, 3), (4, 3)] -> [(3, 2), (4, 2)]
Step 2: H1 [(2, 3), (2, 4)] -> [(3, 3), (3, 4)]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3091 | 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",".","."],["H2",".",".","."],["H2",".","H1","H3"],["H4","H4","H1","H3"]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blocker... | <solution>
Step 1: C [1,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3092 | 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):
[[".","H2","H2","."],["H3","H3",".","."],[".",".","H1","."],[".",".","H1","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 | hard |
puzzle3093 | 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):
[[".",".","H3","."],[".",".","H3","H2"],["B1",".","C","H2"],[".","B2","H1","H1"]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(1, 4), (2, 4)]
Step 2: C [3,3] -> [3,4]
Step 3: H3 [(1, 3), (2, 3)] -> [(1, 2), (2, 2)]
Step 4: H2 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 5: C [3,4] -> [2,4]
</solution> | 5 | hard |
puzzle3094 | 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):
[["H3",".",".","."],["H3","H2","H2","."],["H1","H1","B2","C"],[".",".",".","B1"]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3095 | 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):
[["H1","C",".","."],["H1",".",".","."],[".","H3",".","H2"],[".","H3",".","H2"]]
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 | hard |
puzzle3096 | 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","."],["B1","C","H1","H3"],[".",".",".","H3"],[".","H2","H2","B2"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blocker... | <solution>
Step 1: H1 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 2: C [2,2] -> [1,2]
Step 3: H1 [(2, 3), (3, 3)] -> [(2, 2), (3, 2)]
Step 4: C [1,2] -> [1,3]
Step 5: C [1,3] -> [1,4]
Step 6: H3 [(2, 4), (3, 4)] -> [(2, 3), (3, 3)]
Step 7: C [1,4] -> [2,4]
</solution> | 7 | hard |
puzzle3097 | 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","H2","H1"],[".",".","H2","H1"],[".","H3","H3","."]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(4, 2), (4, 3)] -> [(4, 1), (4, 2)]
Step 2: H2 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 3: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 4: C [2,2] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | hard |
puzzle3098 | 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"],["H4","H4",".","."],["H2","H2","H3","H3"],[".",".","H1","H1"]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blocker... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | hard |
puzzle3099 | 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):
[[".",".","H2","H2"],["H3","H3",".","."],[".",".",".","C"],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers ... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3100 | 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",".","H3","."],["H1",".","H3","B1"],[".","H2","H2","."],["C",".",".","."]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers... | <solution>
Step 1: C [4,1] -> [4,2]
Step 2: C [4,2] -> [4,3]
Step 3: C [4,3] -> [4,4]
Step 4: C [4,4] -> [3,4]
Step 5: B1 [2,4] -> [1,4]
Step 6: C [3,4] -> [2,4]
</solution> | 6 | hard |
puzzle3101 | 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):
[["H3","H3",".","H1"],[".",".",".","H1"],["B2","B1",".","H2"],["C",".",".","H2"]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blocker... | <solution>
Step 1: C [4,1] -> [4,2]
Step 2: C [4,2] -> [4,3]
Step 3: C [4,3] -> [3,3]
Step 4: C [3,3] -> [2,3]
Step 5: H2 [(3, 4), (4, 4)] -> [(3, 3), (4, 3)]
Step 6: H1 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 7: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 8: C [2,3] -> [2,4]
</solution> | 8 | hard |
puzzle3102 | 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):
[[".","B1","C","."],["H3","H3",".","."],["H2","H2","H1","."],[".",".","H1","."]]
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 | hard |
puzzle3103 | 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):
[[".",".","B2","H2"],[".","H3","H3","H2"],["B1",".","C","."],[".","H1","H1","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: B2 [1,3] -> [1,2]
Step 2: C [3,3] -> [3,4]
Step 3: H3 [(2, 2), (2, 3)] -> [(3, 2), (3, 3)]
Step 4: H2 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 5: C [3,4] -> [2,4]
</solution> | 5 | hard |
puzzle3104 | 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):
[["H3",".","H1","H1"],["H3",".","B1","."],[".","B2","C","."],["H2","H2",".","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: C [3,3] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | hard |
puzzle3105 | 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",".","."],["H1",".",".","B1"],["H1","H2","H2","C"],[".","H3","H3","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: B1 [2,4] -> [1,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | hard |
puzzle3106 | 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):
[[".",".","H1","H1"],["B2",".","B1","H2"],["C",".",".","H2"],[".","H3","H3","."]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [3,1] -> [3,2]
Step 3: C [3,2] -> [2,2]
Step 4: B1 [2,3] -> [3,3]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | hard |
puzzle3107 | 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):
[["H3",".","C","."],["H3",".",".","."],[".",".","H1","."],["H2","H2","H1","."]]
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 | hard |
puzzle3108 | 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):
[["H3","H3","C","."],[".",".","B2","."],["H2",".",".","B1"],["H2","H1","H1","."]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blocker... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: C [1,4] -> [2,4]
</solution> | 2 | hard |
puzzle3109 | 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):
[[".",".",".","."],[".",".",".","."],["H3","H1","H2","H2"],["H3","H1","C","."]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers ... | <solution>
Step 1: H2 [(3, 3), (3, 4)] -> [(2, 3), (2, 4)]
Step 2: H2 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 3: C [4,3] -> [3,3]
Step 4: C [3,3] -> [2,3]
Step 5: C [2,3] -> [2,4]
</solution> | 5 | hard |
puzzle3110 | 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):
[[".",".","H2","."],[".",".","H2","."],["H3","C",".","."],["H3","H1","H1","."]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blockers ... | <solution>
Step 1: C [3,2] -> [3,3]
Step 2: C [3,3] -> [3,4]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | hard |
puzzle3111 | 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):
[[".","H1","H1","."],["H2","H2",".","."],[".",".","C","."],["H3","H3",".","."]]
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 | hard |
puzzle3112 | 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","B1"],[".","C","H1","."],[".",".",".","H3"],["H2","H2",".","H3"]]
Current Pieces:
- Car "C": Position [2,2]
- 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: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3113 | 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","."],[".",".","H4","H4"],["H1","H1","H3","H3"],[".",".","H2","H2"]]
Current Pieces:
- Car "C": Position [1,3]
- 1x1 Blocker... | <solution>
Step 1: C [1,3] -> [1,4]
Step 2: H4 [(2, 3), (2, 4)] -> [(2, 2), (2, 3)]
Step 3: C [1,4] -> [2,4]
</solution> | 3 | hard |
puzzle3114 | 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):
[["H1",".",".","."],["H1",".",".","H2"],["B1","C",".","H2"],["H3","H3",".","."]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blockers... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [3,2] -> [2,2]
Step 3: C [2,2] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3115 | 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):
[["H3","H3",".","."],[".",".",".","."],["H1","H1","B1","."],["C","B2","H2","H2"]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blocker... | <solution>
Step 1: H1 [(3, 1), (3, 2)] -> [(2, 1), (2, 2)]
Step 2: C [4,1] -> [3,1]
Step 3: C [3,1] -> [3,2]
Step 4: B1 [3,3] -> [2,3]
Step 5: C [3,2] -> [3,3]
Step 6: C [3,3] -> [3,4]
Step 7: C [3,4] -> [2,4]
</solution> | 7 | hard |
puzzle3116 | 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):
[["H2","H2","H4","H4"],[".",".","C","H3"],[".","H1",".","H3"],[".","H1",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blocker... | <solution>
Step 1: H3 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [2,3] -> [2,4]
</solution> | 2 | hard |
puzzle3117 | 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","H1","H1","."],[".",".",".","H3"],[".",".",".","H3"],[".",".","H2","H2"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers ... | <solution>
Step 1: H2 [(4, 3), (4, 4)] -> [(4, 2), (4, 3)]
Step 2: H3 [(2, 4), (3, 4)] -> [(3, 4), (4, 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 | hard |
puzzle3118 | 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):
[[".","H1","H1","."],["H3",".","C","."],["H3","H2","H2","."],[".",".",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers ... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | hard |
puzzle3119 | 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):
[["B1",".",".","H3"],["H1",".","C","H3"],["H1",".",".","."],["H2","H2",".","."]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers... | <solution>
Step 1: H3 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 2: H3 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3120 | 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",".","."],[".",".",".","."],["H2","H2","H3","H3"]]
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 | hard |
puzzle3121 | 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",".","."],[".",".",".","."],["H3","H3",".","H2"],["B1","H1","H1","H2"]]
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 | hard |
puzzle3122 | 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",".","H1","."],[".",".","H1","."],[".","H3","H3","."],[".",".","H2","H2"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(3, 2), (3, 3)] -> [(3, 1), (3, 2)]
Step 2: H1 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 3: C [1,1] -> [1,2]
Step 4: C [1,2] -> [1,3]
Step 5: C [1,3] -> [1,4]
Step 6: C [1,4] -> [2,4]
</solution> | 6 | hard |
puzzle3123 | 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","H1",".","H3"],[".","H1",".","H3"],[".",".","H2","H4"],[".",".","H2","H4"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(3, 3), (4, 3)] -> [(3, 2), (4, 2)]
Step 2: H2 [(3, 2), (4, 2)] -> [(3, 1), (4, 1)]
Step 3: H1 [(1, 2), (2, 2)] -> [(2, 2), (3, 2)]
Step 4: C [1,1] -> [1,2]
Step 5: H3 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 6: H3 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 7: C [1,2] -> [1,3]
Step 8: C [1,3] -> ... | 9 | hard |
puzzle3124 | 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):
[["H3","H1",".","B2"],["H3","H1",".","."],["H2","C",".","."],["H2","B1",".","."]]
Current Pieces:
- Car "C": Position [3,2]
- 1x1 Blocker... | <solution>
Step 1: C [3,2] -> [3,3]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3125 | 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):
[[".","H1","H1","."],["H4",".",".","H2"],["H4",".","C","H2"],[".","H3","H3","."]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3126 | 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):
[["H4","H2","H1","."],["H4","H2","H1","."],[".",".",".","C"],["H3","H3",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3127 | 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):
[[".",".",".","."],[".","H3","H3","."],[".","H2","C","H1"],[".","H2","B1","H1"]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blockers... | <solution>
Step 1: H3 [(2, 2), (2, 3)] -> [(1, 2), (1, 3)]
Step 2: C [3,3] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3128 | 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):
[["H4","H4","H2","."],["H1",".","H2","."],["H1",".","C","H3"],[".",".",".","H3"]]
Current Pieces:
- Car "C": Position [3,3]
- 1x1 Blocker... | <solution>
Step 1: H2 [(1, 3), (2, 3)] -> [(1, 4), (2, 4)]
Step 2: C [3,3] -> [2,3]
Step 3: H3 [(3, 4), (4, 4)] -> [(3, 3), (4, 3)]
Step 4: H2 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 5: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | hard |
puzzle3129 | 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):
[["H3",".",".","."],["H3",".",".","."],["H2","H2","H1","H1"],[".","H4","H4","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blocker... | <solution>
Step 1: H1 [(3, 3), (3, 4)] -> [(2, 3), (2, 4)]
Step 2: H1 [(2, 3), (2, 4)] -> [(1, 3), (1, 4)]
Step 3: C [4,4] -> [3,4]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | hard |
puzzle3130 | 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","H1","H1","."],[".",".","H2","."],[".",".","H2","."],[".",".","H3","H3"]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blockers ... | <solution>
Step 1: H2 [(2, 3), (3, 3)] -> [(2, 2), (3, 2)]
Step 2: H2 [(2, 2), (3, 2)] -> [(3, 2), (4, 2)]
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 | hard |
puzzle3131 | 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):
[[".","H2","H2","H3"],[".","H1",".","H3"],[".","H1",".","C"],["B1",".",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blockers... | <solution>
Step 1: H2 [(1, 2), (1, 3)] -> [(1, 1), (1, 2)]
Step 2: H3 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 3: C [3,4] -> [2,4]
</solution> | 3 | hard |
puzzle3132 | 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):
[["H3","C",".","."],["H3",".",".","."],["H1","H1",".","H2"],[".","H4","H4","H2"]]
Current Pieces:
- Car "C": Position [1,2]
- 1x1 Blocker... | <solution>
Step 1: C [1,2] -> [2,2]
Step 2: C [2,2] -> [2,3]
Step 3: C [2,3] -> [2,4]
</solution> | 3 | hard |
puzzle3133 | 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):
[[".","H2","H3","H3"],[".","H2",".","."],[".",".",".","."],[".","H1","H1","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 | hard |
puzzle3134 | 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","H1","."],[".","H3",".","H2"],[".","H3",".","H2"],["C",".",".","."]]
Current Pieces:
- Car "C": Position [4,1]
- 1x1 Blockers ... | <solution>
Step 1: H2 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [4,1] -> [4,2]
Step 3: C [4,2] -> [4,3]
Step 4: C [4,3] -> [3,3]
Step 5: C [3,3] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | hard |
puzzle3135 | 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","."],[".",".",".","."],[".","H3","H3","H2"],[".",".","C","H2"]]
Current Pieces:
- Car "C": Position [4,3]
- 1x1 Blockers ... | <solution>
Step 1: H3 [(3, 2), (3, 3)] -> [(3, 1), (3, 2)]
Step 2: C [4,3] -> [3,3]
Step 3: C [3,3] -> [2,3]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3136 | 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):
[[".","H2","H2","C"],[".",".",".","H4"],[".","H3","H3","H4"],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blocker... | <solution>
Step 1: H4 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [1,4] -> [2,4]
</solution> | 2 | hard |
puzzle3137 | 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",".","H3","B2"],["B1",".","H3","H1"],[".",".",".","H1"],["H2","H2",".","."]]
Current Pieces:
- Car "C": Position [1,1]
- 1x1 Blocker... | <solution>
Step 1: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 2: C [1,1] -> [1,2]
Step 3: C [1,2] -> [2,2]
Step 4: H3 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 5: H3 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 6: C [2,2] -> [2,3]
Step 7: C [2,3] -> [2,4]
</solution> | 7 | hard |
puzzle3138 | 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):
[[".","H2",".","."],["C","H2",".","H1"],["B2","B1",".","H1"],["H3","H3",".","."]]
Current Pieces:
- Car "C": Position [2,1]
- 1x1 Blocker... | <solution>
Step 1: H2 [(1, 2), (2, 2)] -> [(1, 3), (2, 3)]
Step 2: H2 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 3: H2 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 4: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 5: C [2,1] -> [2,2]
Step 6: C [2,2] -> [2,3]
Step 7: C [2,3] -> [2,4]
</solution> | 7 | hard |
puzzle3139 | 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):
[[".",".","H4","C"],[".","H3","H4","."],[".","H3","H2","H2"],["H1","H1",".","."]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blocker... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | hard |
puzzle3140 | 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):
[[".",".","H3","H3"],["H2","H2",".","."],["H1","H1",".","C"],[".","H4","H4","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3141 | 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):
[[".",".",".","."],[".","H3","H3","."],["H1","H4","H4","."],["H1","H2","H2","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blocker... | <solution>
Step 1: C [4,4] -> [3,4]
Step 2: C [3,4] -> [2,4]
</solution> | 2 | hard |
puzzle3142 | 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"],[".","C",".","H1"],["H3",".","H2","B1"],["H3",".","H2","B2"]]
Current Pieces:
- Car "C": Position [2,2]
- 1x1 Blocker... | <solution>
Step 1: H2 [(3, 3), (4, 3)] -> [(3, 2), (4, 2)]
Step 2: H1 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 3: H1 [(1, 3), (2, 3)] -> [(2, 3), (3, 3)]
Step 4: H1 [(2, 3), (3, 3)] -> [(3, 3), (4, 3)]
Step 5: C [2,2] -> [2,3]
Step 6: C [2,3] -> [2,4]
</solution> | 6 | hard |
puzzle3143 | 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","H2",".","C"],[".","H2",".","."],["H3",".","B1","."],["H3",".","H1","H1"]]
Current Pieces:
- Car "C": Position [1,4]
- 1x1 Blocker... | <solution>
Step 1: C [1,4] -> [2,4]
</solution> | 1 | hard |
puzzle3144 | 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):
[[".",".",".","."],["H3","H3","C","."],[".","H2",".","H1"],["B1","H2",".","H1"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers... | <solution>
Step 1: C [2,3] -> [2,4]
</solution> | 1 | hard |
puzzle3145 | 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):
[[".","H2","H2","."],[".","H1","H1","."],["C",".","B1","."],[".",".","H3","H3"]]
Current Pieces:
- Car "C": Position [3,1]
- 1x1 Blockers... | <solution>
Step 1: H1 [(2, 2), (2, 3)] -> [(2, 1), (2, 2)]
Step 2: C [3,1] -> [3,2]
Step 3: B1 [3,3] -> [2,3]
Step 4: C [3,2] -> [3,3]
Step 5: C [3,3] -> [3,4]
Step 6: C [3,4] -> [2,4]
</solution> | 6 | hard |
puzzle3146 | 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):
[["H3",".",".","H1"],["H3","B1","C","H1"],[".",".",".","."],[".",".","H2","H2"]]
Current Pieces:
- Car "C": Position [2,3]
- 1x1 Blockers... | <solution>
Step 1: H2 [(4, 3), (4, 4)] -> [(4, 2), (4, 3)]
Step 2: H1 [(1, 4), (2, 4)] -> [(2, 4), (3, 4)]
Step 3: H1 [(2, 4), (3, 4)] -> [(3, 4), (4, 4)]
Step 4: C [2,3] -> [2,4]
</solution> | 4 | hard |
puzzle3147 | 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","H2","B1"],["H3","H3","H2","C"]]
Current Pieces:
- Car "C": Position [4,4]
- 1x1 Blockers... | <solution>
Step 1: B1 [3,4] -> [2,4]
Step 2: C [4,4] -> [3,4]
Step 3: B1 [2,4] -> [1,4]
Step 4: C [3,4] -> [2,4]
</solution> | 4 | hard |
puzzle3148 | 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):
[[".","H3",".","."],[".","H3","B1","."],["H2","H1","B2","C"],["H2","H1",".","."]]
Current Pieces:
- Car "C": Position [3,4]
- 1x1 Blocker... | <solution>
Step 1: C [3,4] -> [2,4]
</solution> | 1 | hard |
puzzle3149 | 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):
[[".","H2",".","B1"],[".","H2","H1","."],[".","B2","H1","."],[".","C","H3","H3"]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blocker... | <solution>
Step 1: B2 [3,2] -> [3,1]
Step 2: H1 [(2, 3), (3, 3)] -> [(1, 3), (2, 3)]
Step 3: C [4,2] -> [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 | hard |
puzzle3150 | 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","H3"],["H2",".",".","H3"],["H2","H1","H1","B2"],[".","C",".","."]]
Current Pieces:
- Car "C": Position [4,2]
- 1x1 Blocker... | <solution>
Step 1: C [4,2] -> [4,3]
Step 2: C [4,3] -> [4,4]
Step 3: H1 [(3, 2), (3, 3)] -> [(4, 2), (4, 3)]
Step 4: B2 [3,4] -> [3,3]
Step 5: C [4,4] -> [3,4]
Step 6: B1 [1,3] -> [1,2]
Step 7: H3 [(1, 4), (2, 4)] -> [(1, 3), (2, 3)]
Step 8: C [3,4] -> [2,4]
</solution> | 8 | hard |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.