prompt stringlengths 807 838 | level stringlengths 19 51 | solution stringlengths 38 277 | number_of_steps int64 5 36 |
|---|---|---|---|
Solve this Kuboble puzzle:
A B .
. . .
b a .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B . ;. . . ;b a . | A down; A right; B down; B left; A left | 5 |
Solve this Kuboble puzzle:
A B a
. X .
. b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B a ;. X . ;. b . | A down; A right; B left; B down; B right; A up | 6 |
Solve this Kuboble puzzle:
A B .
a b .
X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B . ;a b . ;X . . | B down; A right; B right; B up; A left; A down; B left | 7 |
Solve this Kuboble puzzle:
A B .
. a b
X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B . ;. a b ;X . . | B down; A right; B right; B up; A left; A down; A right | 7 |
Solve this Kuboble puzzle:
X . B A
a . . .
X b . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . B A ;a . . . ;X b . . | B down; B left; A left; A down; A left | 5 |
Solve this Kuboble puzzle:
X a X .
X b . .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X a X . ;X b . . ;. . B A | B up; A left; B down; A right; B up; A up; B left | 7 |
Solve this Kuboble puzzle:
X X B A
a . b .
X . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X B A ;a . b . ;X . . . | A down; B right; B down; A left; A up; B left; A left | 7 |
Solve this Kuboble puzzle:
a X B A
. . b .
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| a X B A ;. . b . ;. . . . | B down; A left; B up; A right; A down; A left; A up | 7 |
Solve this Kuboble puzzle:
X . B A
X . b X
a . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . B A ;X . b X ;a . . . | B left; B down; A left; B up; B right; A down; A left | 7 |
Solve this Kuboble puzzle:
X . X b
. a . .
X . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X b ;. a . . ;X . B A | B up; A left; B down; A up; B left; A down; B right; B up | 8 |
Solve this Kuboble puzzle:
X . . X
. a b .
X . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X ;. a b . ;X . B A | B left; A left; A up; A left; A down; B right; B up; B left | 8 |
Solve this Kuboble puzzle:
A aB . .
X . . .
. . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A aB . . ;X . . . ;. . b . | B down; A right; B right; A down; A left; A down; B left; A up | 8 |
Solve this Kuboble puzzle:
X . aB A
X X . .
. b . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . aB A ;X X . . ;. b . . | B down; B right; A down; B left; A left; A down; B right; A up | 8 |
Solve this Kuboble puzzle:
X . . X
. b a .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X ;. b a . ;. . B A | A up; B right; A left; B up; B left; A down; A right; A up; A left | 9 |
Solve this Kuboble puzzle:
A aB . .
X . X .
. . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A aB . . ;X . X . ;. . b . | B down; A right; A down; B left; A left; A up; B right; A down; B left; A up | 10 |
Solve this Kuboble puzzle:
X b X .
. . a .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X b X . ;. . a . ;. . B A | B up; B right; A left; B down; A right; A up; B left; B up; B right; B up | 10 |
Solve this Kuboble puzzle:
X . bB A
. a . X
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . bB A ;. a . X ;. . . . | B down; B left; B up; B right; A left; A down; A left; A up; A right; B up | 10 |
Solve this Kuboble puzzle:
. X B A
. . . a
b X . .
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X B A ;. . . a ;b X . . ;. . . . | A down; B right; A up; A left; B down; B left; B up; A right | 8 |
Solve this Kuboble puzzle:
X b X .
. . . .
. X . .
. . aB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X b X . ;. . . . ;. X . . ;. . aB A | B up; B right; A up; B left; A left; A up; B right; B up; A down | 9 |
Solve this Kuboble puzzle:
X X . X
. . a .
. . . .
. b B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X . X ;. . a . ;. . . . ;. b B A | B up; A left; B down; B left; B up; A right; A up; A left; B down | 9 |
Solve this Kuboble puzzle:
X . bB A
. . . X
. . a .
. X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . bB A ;. . . X ;. . a . ;. X . . | B left; A left; B down; B left; B up; A down; B right; A up; B up | 9 |
Solve this Kuboble puzzle:
X . X .
a . . .
X b . .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X . ;a . . . ;X b . . ;. . B A | B up; B right; B down; B left; A up; B right; A down; B left; A left | 9 |
Solve this Kuboble puzzle:
X . X .
. . . .
. . b .
a X B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X . ;. . . . ;. . b . ;a X B A | B up; B right; A left; B down; A up; B left; B up; A left; A down | 9 |
Solve this Kuboble puzzle:
X b X .
. . a .
. . . .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X b X . ;. . a . ;. . . . ;. . B A | B up; B right; A left; B down; A right; A up; B left; B up; B right; B up | 10 |
Solve this Kuboble puzzle:
X . aB A
. X . .
. b . .
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . aB A ;. X . . ;. b . . ;. . . . | A down; B right; A up; A left; B down; B left; A down; B right; B up; A up | 10 |
Solve this Kuboble puzzle:
. X X .
. . b .
. a . .
. X B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X X . ;. . b . ;. a . . ;. X B A | B up; B left; A left; A up; A left; A down; B right; B down; B left; B up | 10 |
Solve this Kuboble puzzle:
. X B A
. . . .
a X . X
. . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X B A ;. . . . ;a X . X ;. . b . | B down; A left; B up; B left; A down; A left; A up; B right; B up; B left; B down | 11 |
Solve this Kuboble puzzle:
X X B A
. . a .
b . . X
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X B A ;. . a . ;b . . X ;. . . . | B down; B left; A down; A left; B up; B right; A right; A up; A left; A down; B left | 11 |
Solve this Kuboble puzzle:
. X X .
. X . a
. b . .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X X . ;. X . a ;. b . . ;. . B A | B up; A left; B down; B left; B up; A right; B down; A left; B up; A up; A right | 11 |
Solve this Kuboble puzzle:
. X B A
. . b .
. . . X
. a . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X B A ;. . b . ;. . . X ;. a . . | B down; A down; A left; A down; A right; B up; B right; B down; A up; B left; A down | 11 |
Solve this Kuboble puzzle:
A B b .
. X . .
a . . .
. . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B b . ;. X . . ;a . . . ;. . . . | A down; A right; A up; B right; A down; A left; B down; A right; A up; A left; B up | 11 |
Solve this Kuboble puzzle:
a X B A
. . . .
. . . .
b X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| a X B A ;. . . . ;. . . . ;b X . . | B down; B right; B up; B left; A down; B right; A up; B left; B down; A left; A up | 11 |
Solve this Kuboble puzzle:
. X X .
. a . b
. X . .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X X . ;. a . b ;. X . . ;. . B A | B up; B right; B down; B left; A up; B right; A down; B left; A left; B up; A right; B right | 12 |
Solve this Kuboble puzzle:
X b X .
. . . .
. . a .
A B . X
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X b X . ;. . . . ;. . a . ;A B . X | B right; B up; B left; A up; B right; B down; B left; A up; A right; A down; A left; B up | 12 |
Solve this Kuboble puzzle:
X X B A
. . . .
. a . .
b X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X B A ;. . . . ;. a . . ;b X . . | B down; B right; A down; A left; A up; A right; B up; B left; B up; A left; B down; A down | 12 |
Solve this Kuboble puzzle:
X . X .
. a . .
. b . .
X . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X . ;. a . . ;. b . . ;X . B A | B up; B right; A up; B left; B down; B right; B up; A left; A up; A right; B down; B left; B up | 13 |
Solve this Kuboble puzzle:
X X B A
. a . .
. . b .
. . . X
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X B A ;. a . . ;. . b . ;. . . X | B down; B left; B up; B right; B down; B left; A down; A left; B up; B right; B down; B left; A up | 13 |
Solve this Kuboble puzzle:
X . . X
. b . .
. X a .
. . B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X ;. b . . ;. X a . ;. . B A | B left; B up; A up; B right; A down; A left; A up; A right; B down; A up; A right; A down; A right; B up; B left; B down; A left | 17 |
Solve this Kuboble puzzle:
A B C .
c . b .
. . . a
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B C . ;c . b . ;. . . a | A down; A right; B down; B right; B up; A left; C left; C down; A right | 9 |
Solve this Kuboble puzzle:
A B aC .
. . . b
. c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B aC . ;. . . b ;. c . . | A down; A right; B left; C left; C down; B right; B down; A left; A up | 9 |
Solve this Kuboble puzzle:
A B C .
. a . .
. c . b
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B C . ;. a . . ;. c . b | B down; A right; A down; B left; C down; C left; B up; B right; B down | 9 |
Solve this Kuboble puzzle:
A B C b
. . a .
. c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B C b ;. . a . ;. c . . | A down; C down; C left; C up; A right; B right; A up; A left; C down | 9 |
Solve this Kuboble puzzle:
A B C .
. c b .
a . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B C . ;. c b . ;a . . . | A down; A right; B down; B right; B up; A left; C left; C down; C right | 9 |
Solve this Kuboble puzzle:
A B aC .
c X . .
. b . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B aC . ;c X . . ;. b . . | C down; B right; B down; C left; B left; C up; A right; A down; A left; A up | 10 |
Solve this Kuboble puzzle:
b X . .
. . c .
. C aB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| b X . . ;. . c . ;. C aB A | C up; C right; B left; B up; A left; C down; A right; C up; C left; C down | 10 |
Solve this Kuboble puzzle:
. X . c
. b . .
. aC B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X . c ;. b . . ;. aC B A | C left; B left; B up; C right; C up; A left; C down; A right; C up; C right | 10 |
Solve this Kuboble puzzle:
A B bC .
. X . a
. c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B bC . ;. X . a ;. c . . | A down; A right; C right; A up; B right; B down; C left; C down; C right; B up | 10 |
Solve this Kuboble puzzle:
X . X b
. a . .
A B cC X
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X b ;. a . . ;A B cC X | A up; B up; C left; B down; B right; B up; A right; B right; B up; C right | 10 |
Solve this Kuboble puzzle:
A bB C a
. X . .
. c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A bB C a ;. X . . ;. c . . | A down; A right; A up; C down; A left; C left; A down; C right; A up; A right | 10 |
Solve this Kuboble puzzle:
X C B A
b . c .
a X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X C B A ;b . c . ;a X . . | C down; C right; C down; A down; C left; A left; C up; B left; B down; A down; B left | 11 |
Solve this Kuboble puzzle:
X C cB A
. b . .
. . a .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X C cB A ;. b . . ;. . a . | C down; A down; C right; C up; B left; B down; A left; B left; B up; B right; C up | 11 |
Solve this Kuboble puzzle:
A X . c
B . b .
C . X a
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A X . c ;B . b . ;C . X a | B right; A down; B up; A right; A down; B left; C right; C up; C right; B down; C up | 11 |
Solve this Kuboble puzzle:
A X . .
B a . .
C b X c
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A X . . ;B a . . ;C b X c | B right; C right; A down; B left; C up; A right; B down; C right; A up; B right; C down | 11 |
Solve this Kuboble puzzle:
X C aB A
. c X .
. . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X C aB A ;. c X . ;. . b . | C down; C left; C up; B left; A left; B down; C right; B right; C down; B left; C left; C up; C right | 13 |
Solve this Kuboble puzzle:
. X . .
a X b .
. C cB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X . . ;a X b . ;. C cB A | B up; C right; C up; B right; A left; C down; B down; A up; C left; A down; C right; B up; B left; B down | 14 |
Solve this Kuboble puzzle:
. X . .
a . X c
. C bB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X . . ;a . X c ;. C bB A | C left; B left; B up; B left; A left; A up; C right; C up; B down; B right; C down; A down; B left; A up; A left | 15 |
Solve this Kuboble puzzle:
b X X .
. . . .
. . a .
. C cB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| b X X . ;. . . . ;. . a . ;. C cB A | C left; B left; A left; B up; A up; C right; B down; C left; B left; B up; A down | 11 |
Solve this Kuboble puzzle:
. X X .
. b . a
. . c .
. C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X X . ;. b . a ;. . c . ;. C B A | C left; B left; A left; B up; A up; C right; B down; C left; C up; B up; A right | 11 |
Solve this Kuboble puzzle:
X a X .
. . . .
. b . .
. C cB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X a X . ;. . . . ;. b . . ;. C cB A | C left; B left; B up; C right; C up; A left; B down; A up; A right; C down; B up; A up | 12 |
Solve this Kuboble puzzle:
A X . c
B . . .
C a . b
. X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A X . c ;B . . . ;C a . b ;. X . . | B right; A down; B down; A right; B up; C up; B left; C down; A left; B right; A down; C right; C up | 13 |
Solve this Kuboble puzzle:
A B C .
. c . .
a . . .
. . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A B C . ;. c . . ;a . . . ;. . b . | A down; C down; C left; C up; A right; A up; B right; A down; A left; B down; A right; A up; A left | 13 |
Solve this Kuboble puzzle:
X . . X
. . b .
. a . c
. C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X ;. . b . ;. a . c ;. C B A | C left; A up; A left; A down; C right; C up; C right; C down; A right; C right; B up; C left; B down; C right | 14 |
Solve this Kuboble puzzle:
X X C B A
. X . . b
. c a . .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X C B A ;. X . . b ;. c a . . ;. . . . . | C down; C left; B down; B right; B up; A left; A down; C right; C up; B left; A up; B right | 12 |
Solve this Kuboble puzzle:
. X C B A
. . a . .
. c . . b
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . a . . ;. c . . b ;. . . . . | B down; B left; A left; A down; B right; C down; A up; A left; A down; C left; B up; C right; B right | 13 |
Solve this Kuboble puzzle:
X . C B A
. . a . .
. X . . b
. c . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . C B A ;. . a . . ;. X . . b ;. c . . . | C down; C right; A down; B right; A left; B down; C left; A down; C right; A up; B left; A down; B right | 13 |
Solve this Kuboble puzzle:
. X C B A
. . a . .
b . . c .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . a . . ;b . . c . ;. . . . . | C down; B left; B down; C right; A left; A down; A right; C up; C left; A up; A left; A down; B left | 13 |
Solve this Kuboble puzzle:
a X C B A
. . . . .
. c . . .
. . . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| a X C B A ;. . . . . ;. c . . . ;. . . b . | A down; B right; B down; C right; B left; C down; C left; B down; B right; B up; A left; B down; A up | 13 |
Solve this Kuboble puzzle:
. X c X .
. . . b .
. a . . .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X c X . ;. . . b . ;. a . . . ;. . C B A | C up; B left; A left; C down; A up; B right; C up; A down; B right; C down; B left; C up; B up | 13 |
Solve this Kuboble puzzle:
X . . . X
. a . b .
X X . c .
X . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . . X ;. a . b . ;X X . c . ;X . C B A | C up; C right; A up; A left; B up; A right; B right; C down; B left; C up; A up; A left; A down | 13 |
Solve this Kuboble puzzle:
c X a X .
. . . . .
. . b . .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| c X a X . ;. . . . . ;. . b . . ;. . C B A | C up; B left; C down; A left; C left; C up; B right; A up; A left; C left; C up; B up; A up | 13 |
Solve this Kuboble puzzle:
b X X . .
. . . . .
X . c a .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| b X X . . ;. . . . . ;X . c a . ;. . C B A | C up; C right; C down; C left; A up; A left; A down; C right; B right; B up; B left; B down; B left; B up | 14 |
Solve this Kuboble puzzle:
. X c X .
. . . . .
. . X a .
. . C bB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X c X . ;. . . . . ;. . X a . ;. . C bB A | C left; B left; B up; C right; C up; C left; C up; B right; C down; A up; B left; C up; B down; A left | 14 |
Solve this Kuboble puzzle:
X . C B A
. . X . b
. X . c .
. a . . X
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . C B A ;. . X . b ;. X . c . ;. a . . X | B down; C right; C down; C left; B up; A down; A left; B down; A down; A left; C down; A right; C right; C up; B right | 15 |
Solve this Kuboble puzzle:
X . C B A
b . X . .
X . . c .
. . a . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . C B A ;b . X . . ;X . . c . ;. . a . . | C left; C down; B left; B down; A left; B up; A right; A down; A left; C up; C right; B left; A up; C left; A down | 15 |
Solve this Kuboble puzzle:
. X a X .
. c . . .
b X . . .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X a X . ;. c . . . ;b X . . . ;. . C B A | A up; B right; A down; A left; A up; C up; C right; B up; C left; B left; A down; B down; B left; B up; C right; A up | 16 |
Solve this Kuboble puzzle:
. X C B A
c . a . .
. X . . X
. b . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;c . a . . ;. X . . X ;. b . . . | C down; B left; B down; A left; B up; B left; C up; C left; B down; A down; B right; A up; A right; A down; A left; C left | 16 |
Solve this Kuboble puzzle:
. X C B A
. . . X b
. . X . .
. c . a .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . . X b ;. . X . . ;. c . a . | C down; C left; A down; B right; A left; C down; C right; B down; A right; C down; B up; A up; A right; B down; A left; A down | 16 |
Solve this Kuboble puzzle:
b X C B A
. . . c .
X . . a .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| b X C B A ;. . . c . ;X . . a . ;. . . . . | C down; B left; B down; C right; C up; A left; A down; B left; B up; A right; B right; A down; C left; B left; B up; A up | 16 |
Solve this Kuboble puzzle:
. X C B A
. . c . .
. a X X .
. . b . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . c . . ;. a X X . ;. . b . . | C down; C left; A down; B right; A up; A left; B down; A down; B left; A left; A up; C right; C up; C left; C down; A right | 16 |
Solve this Kuboble puzzle:
A cB C . .
. X b X .
a . . . .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A cB C . . ;. X b X . ;a . . . . ;. . . . . | A down; A right; A up; C down; A left; A down; B left; C right; C up; C left; B down; B right; B up; B left; B down; A left | 16 |
Solve this Kuboble puzzle:
X X C B A
. . . c .
. . . a .
b X . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X C B A ;. . . c . ;. . . a . ;b X . . . | C down; B left; B down; C right; C up; A left; A down; B left; B up; A right; B right; A down; C left; B left; B down; A up | 16 |
Solve this Kuboble puzzle:
. X C B A
. b . . X
. . . . .
. c . X a
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. b . . X ;. . . . . ;. c . X a | C down; B down; B left; B down; A left; A down; C left; B up; A left; B down; B right; B down; B left; B up; A right; A down | 16 |
Solve this Kuboble puzzle:
X . . X .
. . a . .
. b . . c
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X . ;. . a . . ;. b . . c ;. . C B A | C left; B left; A left; B up; C right; B down; B left; C up; C right; C down; B right; C right; A up; C left; A down; C right | 16 |
Solve this Kuboble puzzle:
X B . . X
A . b . C
. . . c .
X . a . X
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X B . . X ;A . b . C ;. . . c . ;X . a . X | B down; A down; A right; C left; A up; A left; B up; B right; C down; C right; B up; B left; A left; A down; A right; A down | 16 |
Solve this Kuboble puzzle:
X . C B A
. a . . .
X . . b .
. . c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . C B A ;. a . . . ;X . . b . ;. . c . . | A down; A left; B down; A right; C down; B up; B right; A right; B down; B left; C left; A up; A left; A down; C right; C down | 16 |
Solve this Kuboble puzzle:
X X C B A
. . a . .
. c . . .
. . . b .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X C B A ;. . a . . ;. c . . . ;. . . b . | C down; B left; B down; C right; B right; A down; B left; C up; C left; B up; B right; A down; A left; A up; A right; B down | 16 |
Solve this Kuboble puzzle:
A bB C . .
X . . c .
. X . . a
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A bB C . . ;X . . c . ;. X . . a ;. . . . . | B down; B right; C left; C down; A right; B left; A down; B up; C right; A up; A left; B down; A right; C left; B left; B up | 16 |
Solve this Kuboble puzzle:
X X . b X
. . . . .
. a c . .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X . b X ;. . . . . ;. a c . . ;. . C B A | C up; C right; B left; C down; A up; A left; A down; B right; C up; C left; C down; A right; C right; B up; C left; B right | 16 |
Solve this Kuboble puzzle:
X . C B A
. a c . .
. . . b .
. . X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . C B A ;. a c . . ;. . . b . ;. . X . . | C down; C left; C up; A down; A left; A up; C right; A down; B down; A right; A up; A left; A down; A left; A up; A right | 16 |
Solve this Kuboble puzzle:
. X C B A
. X X . .
. . a . b
. . c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. X X . . ;. . a . b ;. . c . . | A down; A left; B down; C right; C down; B left; C left; B up; B right; C up; B left; C down; A right; A up; A right; B right | 16 |
Solve this Kuboble puzzle:
X . X . .
. c . . .
. . a . .
X . bC B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . X . . ;. c . . . ;. . a . . ;X . bC B A | C left; B up; B right; A up; B left; B down; B left; B up; C right; C up; C left; C up; C right; B down; A left; A down | 16 |
Solve this Kuboble puzzle:
X X C bB A
. . c . .
X . . a .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X X C bB A ;. . c . . ;X . . a . ;. . . . . | C down; C right; A down; B right; B down; A left; C up; A up; C left; A right; C up; C right; A down; B left; A up; B up | 16 |
Solve this Kuboble puzzle:
. X C B A
. . b . .
a X . . X
. . c . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . b . . ;a X . . X ;. . c . . | B down; C right; B left; C down; A down; A left; A down; B right; C up; C left; C down; C right; B up; C left; B down; C down | 16 |
Solve this Kuboble puzzle:
. X X . .
. . c . b
. . X . .
. . aC B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X X . . ;. . c . b ;. . X . . ;. . aC B A | C left; C up; B left; C down; C right; B right; C down; A up; A left; B up; A right; A down; A left; C up; C right; B right | 16 |
Solve this Kuboble puzzle:
. X C B A
. b . . X
. c . . .
. X . . a
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. b . . X ;. c . . . ;. X . . a | B down; C right; C down; C left; B right; B up; B left; A left; A down; A right; A up; A left; B up; C right; A down; A right | 16 |
Solve this Kuboble puzzle:
X . . X .
. b . . .
. . a . X
. . C cB A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . X . ;. b . . . ;. . a . X ;. . C cB A | C up; C left; B left; A left; A up; B right; A down; C down; B left; B up; B left; B down; C right; A up; A right; C down | 16 |
Solve this Kuboble puzzle:
. X C B A
. . . c .
. a . . X
b . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| . X C B A ;. . . c . ;. a . . X ;b . . . . | C down; B down; A left; B up; A down; B left; B down; A left; C up; A right; C right; C up; C right; C down; C left; B down; B left | 17 |
Solve this Kuboble puzzle:
X . . . X
. a . . .
c X b . .
. . C B A
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X . . . X ;. a . . . ;c X b . . ;. . C B A | C up; B left; C down; A left; C up; C left; C down; C left; C down; B right; B up; B right; B down; B left; A up; A left; A down | 17 |
Solve this Kuboble puzzle:
A bB C c .
X X . . .
. . a . .
. . . . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| A bB C c . ;X X . . . ;. . a . . ;. . . . . | C right; B right; A right; B down; C left; A down; C down; B right; B up; B left; A up; B right; A down; A left; A up; A right; C up | 17 |
Solve this Kuboble puzzle:
X b X . A
. . . c B
. a . . C
. . X . .
The rules are the you are trying to get the "kubobles" represented by capital letters (A.B.C...etc) into their respective cell (represented by un-capitalized a,b,c...etc). You can move each piece either up, down, left or right and it will slide until it hits a wall, an obstacle (represented by an X) or another piece. The puzzle is given as a NxM grid. So for example,
A B . ;. . X . ;b a .
consists of 3x3 grid, where the first row contains 2 pieces, A and B, the second row has a wall, in the middle, and the bottom row contains the objectives.
Rules clarification:
- Only the pieces that are selected can be moved, all other pieces, including obstacles are not moved.
- Even when the pieces have reached their destination, they still remain on board.
| X b X . A ;. . . c B ;. a . . C ;. . X . . | A left; A down; C left; C up; C right; A up; C up; B left; C down; A left; B right; A up; B left; A down; A right; A up; B up | 17 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.