diff options
author | Marvin Borner | 2024-04-09 19:36:50 +0200 |
---|---|---|
committer | Marvin Borner | 2024-04-09 19:38:26 +0200 |
commit | 11b942c9ad3142b9661f213588fdb03b0405f08b (patch) | |
tree | da54f1761d16b55331297a8e664535b4e07a4cf0 /samples/aoc/2015 | |
parent | 2e0a67b6219052b57a9ca5db666038c31ea0cec9 (diff) |
Added test for AOC samples
(although 2018 is actually broken)
Diffstat (limited to 'samples/aoc/2015')
-rw-r--r-- | samples/aoc/2015/01/output.check | 1 | ||||
-rw-r--r-- | samples/aoc/2015/02/input | 2 | ||||
-rw-r--r-- | samples/aoc/2015/02/output.check | 1 | ||||
-rw-r--r-- | samples/aoc/2015/02/solve.bruijn | 14 |
4 files changed, 18 insertions, 0 deletions
diff --git a/samples/aoc/2015/01/output.check b/samples/aoc/2015/01/output.check new file mode 100644 index 0000000..1af61be --- /dev/null +++ b/samples/aoc/2015/01/output.check @@ -0,0 +1 @@ +?> <-1t : 5t> diff --git a/samples/aoc/2015/02/input b/samples/aoc/2015/02/input new file mode 100644 index 0000000..5d2a1f2 --- /dev/null +++ b/samples/aoc/2015/02/input @@ -0,0 +1,2 @@ +2x3x4 +1x1x10 diff --git a/samples/aoc/2015/02/output.check b/samples/aoc/2015/02/output.check new file mode 100644 index 0000000..f23db1b --- /dev/null +++ b/samples/aoc/2015/02/output.check @@ -0,0 +1 @@ +?> <101t : 48t> diff --git a/samples/aoc/2015/02/solve.bruijn b/samples/aoc/2015/02/solve.bruijn new file mode 100644 index 0000000..96bd9e0 --- /dev/null +++ b/samples/aoc/2015/02/solve.bruijn @@ -0,0 +1,14 @@ +:import std/Combinator . +:import std/String . +:import std/Math . +:import std/Char C + +parse (split-list-by (C.eq? 'x')) → (map string→number) + +main trim → lines → (map parse) → (φ cons part1 part2) + part1 foldl \(g add [φ add surface slack (^0 ⋅ ^(~0) : (^(~0) ⋅ ^(~(~0)) : {}(^(~(~0)) ⋅ ^0)))]) (+0) + surface foldl \(g add (mul (+2))) (+0) + slack lmin + part2 foldl \(g add (φ add ribbon bow)) (+0) + ribbon sort-asc → (take (+2)) → sum → (mul (+2)) + bow product |