diff options
author | Marvin Borner | 2023-03-07 00:19:48 +0100 |
---|---|---|
committer | Marvin Borner | 2023-03-07 00:19:48 +0100 |
commit | 9ef10406c067d0a0532d609212a94519af402b87 (patch) | |
tree | 8d30448311ec43678873050ff7654d7f6c348ec8 /samples/aoc/2016/01/solve.bruijn | |
parent | 61b749cf19b30a307ef537f989e5509c3c4aa17f (diff) |
Added a few advent of code solutions
Diffstat (limited to 'samples/aoc/2016/01/solve.bruijn')
-rw-r--r-- | samples/aoc/2016/01/solve.bruijn | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/samples/aoc/2016/01/solve.bruijn b/samples/aoc/2016/01/solve.bruijn new file mode 100644 index 0000000..525d311 --- /dev/null +++ b/samples/aoc/2016/01/solve.bruijn @@ -0,0 +1,31 @@ +# vim first: :s/ //g + +:import std/Combinator . +:import std/Char C +:import std/String S +:import std/Pair P +:import std/Number . +:import std/List . + +direction! [^0 : (S.number! ~0)] ⧗ (List Char) → Direction + +:test (direction! "R42") ('R' : (+42)) + +# north=0, east=1, south=2, west=3 +# rotation : (x : y) +start ((+0) : ((+0) : (+0))) ⧗ 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] + y ^(~2) : (~(~2) + (p ~1)) + 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)] |