aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/aoc/2017
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/2017
parent61b749cf19b30a307ef537f989e5509c3c4aa17f (diff)
Added a few advent of code solutions
Diffstat (limited to 'samples/aoc/2017')
-rw-r--r--samples/aoc/2017/01/input1
-rw-r--r--samples/aoc/2017/01/solve.bruijn23
2 files changed, 24 insertions, 0 deletions
diff --git a/samples/aoc/2017/01/input b/samples/aoc/2017/01/input
new file mode 100644
index 0000000..8f237ab
--- /dev/null
+++ b/samples/aoc/2017/01/input
@@ -0,0 +1 @@
+12131415
diff --git a/samples/aoc/2017/01/solve.bruijn b/samples/aoc/2017/01/solve.bruijn
new file mode 100644
index 0000000..dac0ed6
--- /dev/null
+++ b/samples/aoc/2017/01/solve.bruijn
@@ -0,0 +1,23 @@
+:import std/Combinator .
+:import std/String .
+:import std/Number .
+:import std/Char C
+:import std/Pair P
+
+self [[((zip 0) ∘ (drop 1) ∘ cycle) 0]] ⧗ Number → (List Number) → (List (Pair Number Number))
+
+part1 sum ∘ eqs ∘ pairs
+ sum foldl [[^0 + 1]] (+0)
+ eqs filter (P.uncurry …=?…)
+ pairs self (+1)
+
+part2 [(sum ∘ eqs ∘ pairs) 0]
+ sum foldl [[^0 + 1]] (+0)
+ eqs filter (P.uncurry …=?…)
+ pairs self /²(length 0)
+
+:test (part1 ((+1) : ((+1) : ((+2) : {}(+2))))) ((+3))
+
+main [parts nums]
+ nums C.number! <$> ^(lines 0)
+ parts [(part1 0) : (part2 0)]