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/2016/01/solve.bruijn | |
parent | 2e0a67b6219052b57a9ca5db666038c31ea0cec9 (diff) |
Added test for AOC samples
(although 2018 is actually broken)
Diffstat (limited to 'samples/aoc/2016/01/solve.bruijn')
-rw-r--r-- | samples/aoc/2016/01/solve.bruijn | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/samples/aoc/2016/01/solve.bruijn b/samples/aoc/2016/01/solve.bruijn index efdaaaa..e48c5ec 100644 --- a/samples/aoc/2016/01/solve.bruijn +++ b/samples/aoc/2016/01/solve.bruijn @@ -15,17 +15,17 @@ direction! [^0 : (S.string→number ~0)] ⧗ (List Char) → Direction # rotation : (x : y) start ((+0) : ((+0) : (+0))) ⧗ State -move [[go ((C.eq? ^0 'R' ++‣ --‣) ^1)]] ⧗ State → Direction → State +move [[go (C.eq? ^0 'R' ++‣ --‣ ^1)]] ⧗ State → Direction → State go [0 : (even? 0 y x)] - x (^(~2) + (p ~1)) : ~(~2) - p ((0 % (+4)) =? (+3)) -‣ [0] + x ^(~2) + (p ~1) : ~(~2) + p 0 % (+4) =? (+3) -‣ [0] y ^(~2) : (~(~2) + (p ~1)) - p ((0 % (+4)) =? (+2)) -‣ [0] + p 0 % (+4) =? (+2) -‣ [0] :test (move start (direction! "R42")) ((+1) : ((+42) : (+0))) part1 (P.uncurry …+…) ∘ ~‣ ∘ (foldl move start) ⧗ (List Direction) → State main [parts coords] - coords direction! <$> (split-list-by [C.eq? 0 ','] (init 0)) - parts [(part1 0)] + coords direction! <$> (split-list-by (C.eq? ',') (init 0)) + parts [part1 0] |