https://github.com/tgrothe/box-puzzle
A backtracking approach in Java for a box puzzle, perhaps similar to Sudoku
https://github.com/tgrothe/box-puzzle
backtracking-algorithm box3d java puzzle-solver
Last synced: about 1 month ago
JSON representation
A backtracking approach in Java for a box puzzle, perhaps similar to Sudoku
- Host: GitHub
- URL: https://github.com/tgrothe/box-puzzle
- Owner: tgrothe
- License: mit
- Created: 2023-11-12T09:23:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-01T02:10:45.000Z (about 2 months ago)
- Last Synced: 2026-01-05T17:50:14.647Z (about 2 months ago)
- Topics: backtracking-algorithm, box3d, java, puzzle-solver
- Language: Java
- Homepage:
- Size: 214 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## box-puzzle
A large cube-shaped box has the dimensions `5x5x5`. This box is to be completely filled with smaller boxes.
Possible candidates are:
1x1x1, 5-fold
1x2x4, 6-fold
2x2x3, 6-fold
An ~~additional~~ "magic" box with the dimensions `1x1x1` should always be placed in the middle/center of the large box.
This should be solved with backtracking in Java.
---
One solution could be:
