Skip to content

Commit 0c26c07

Browse files
committed
A new start
0 parents  commit 0c26c07

File tree

13 files changed

+438
-0
lines changed

13 files changed

+438
-0
lines changed

‎README.md‎

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Tilted-Packing-Puzzle
2+
3+
Four square‑tray challenges: each variant uses the 7 identical polyomino pieces; tray sizes vary.
4+
Pack all pieces inside the tray—gaps are allowed, overlaps are not.
5+
6+
Each puzzle has a unique solution based on exhaustive computer search; not formally proven..
7+
8+
| Puzzle # | Polyomino | Tray side <br>(units, square) | Goal |
9+
|----------|-----------------------|-----------|------|
10+
| 1 | <img src="docs/piece1.svg" width="60" alt="polyomino 1"> | **8.5382** | Fit **7 copies** of the polyomino into the square tray. |
11+
| 2 | <img src="docs/piece2.svg" width="60" alt="polyomino 2"> | **8.4971** | Same objective as above. |
12+
| 3 | <img src="docs/piece3.svg" width="60" alt="polyomino 3"> | **8.2463** | Same objective as above. |
13+
| 4 | <img src="docs/piece4.svg" width="75" alt="polyomino 4"> | **8.9307** | Same objective as above. |
14+
15+
16+
## Files
17+
18+
* `solutions/` – solved layout
19+
20+
## Licence
21+
Puzzle Design
22+
23+
2025 Yuji Katayose – *Puzzle 1*
24+
2024 Yuji Katayose – *Puzzles 2 - 4*
25+
26+
CC0 1.0 (public-domain dedication)
27+
28+
Enjoy puzzling!

‎misc/piece1.svg‎

Lines changed: 96 additions & 0 deletions
Loading

‎misc/piece1.txt‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
..#.
2+
####
3+
.#..
4+
.#..

‎misc/piece2.svg‎

Lines changed: 95 additions & 0 deletions
Loading

‎misc/piece2.txt‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
..##
2+
###.
3+
.#..
4+
.#..

‎misc/piece3.svg‎

Lines changed: 96 additions & 0 deletions
Loading

‎misc/piece3.txt‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.##
2+
##.
3+
.#.
4+
.#.
5+
.#.

0 commit comments

Comments
 (0)