aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/aoc/2016
diff options
context:
space:
mode:
authorMarvin Borner2023-03-07 00:19:48 +0100
committerMarvin Borner2023-03-07 00:19:48 +0100
commit9ef10406c067d0a0532d609212a94519af402b87 (patch)
tree8d30448311ec43678873050ff7654d7f6c348ec8 /samples/aoc/2016
parent61b749cf19b30a307ef537f989e5509c3c4aa17f (diff)
Added a few advent of code solutions
Diffstat (limited to 'samples/aoc/2016')
-rw-r--r--samples/aoc/2016/01/input1
-rw-r--r--samples/aoc/2016/01/solve.bruijn31
2 files changed, 32 insertions, 0 deletions
diff --git a/samples/aoc/2016/01/input b/samples/aoc/2016/01/input
new file mode 100644
index 0000000..bb9f2a2
--- /dev/null
+++ b/samples/aoc/2016/01/input
@@ -0,0 +1 @@
+R5,L5,R5,R3
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)]