summaryrefslogtreecommitdiff
path: root/heav_optimal_shapes.lua
blob: 784ba8efbd8946e1427c40c5ae3a3f039f1a78e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
local poly = require "polyomino"

local M = {}
M.__index = M

M.spite_shape = poly.def("heav.spite_shape", [[
	#.#
	.#.#
	#.#.
	.#.#
]])

M.heav = poly.def("heav.heav", [[
	.#..
	.###
	###.
	..#.
]])

M.colon = poly.def("heav.colon", [[
	.#.
	...
    .#.
]])

M.semicolon = poly.def("heav.semicolon", [[
	.#.
	...
    ##.
]])

return M