aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2023-02-24 16:54:17 +0100
committerMarvin Borner2023-02-24 16:56:08 +0100
commit5446705237a6fc1842f02b0a8b3bc2b74aab4557 (patch)
treeaede1d2b7d385675ae23cf4d0d6d591fe370311f
parent4d482c44df180625a64e34019abf7796399038b0 (diff)
Added code samples
-rw-r--r--samples/aoc/2022/01/input14
-rw-r--r--samples/aoc/2022/01/solve.bruijn7
-rw-r--r--samples/readme.md12
3 files changed, 33 insertions, 0 deletions
diff --git a/samples/aoc/2022/01/input b/samples/aoc/2022/01/input
new file mode 100644
index 0000000..2094f91
--- /dev/null
+++ b/samples/aoc/2022/01/input
@@ -0,0 +1,14 @@
+1000
+2000
+3000
+
+4000
+
+5000
+6000
+
+7000
+8000
+9000
+
+10000
diff --git a/samples/aoc/2022/01/solve.bruijn b/samples/aoc/2022/01/solve.bruijn
new file mode 100644
index 0000000..7764db8
--- /dev/null
+++ b/samples/aoc/2022/01/solve.bruijn
@@ -0,0 +1,7 @@
+:import std/Math .
+:import std/String .
+
+main [lmax sums]
+ numbers number! <$> (lines 0)
+ parts split-at =?‣ numbers
+ sums sum <$> parts
diff --git a/samples/readme.md b/samples/readme.md
new file mode 100644
index 0000000..7ab3472
--- /dev/null
+++ b/samples/readme.md
@@ -0,0 +1,12 @@
+# Samples
+
+## AOC
+
+These samples solve some of the [Advent of
+Code](https://adventofcode.com) problems.
+
+ cat input | bruijn solve.bruijn
+
+**Be aware** that lambda calculus is generally incredibly inefficient.
+For example, the obvious solution for the very simple problem 2022/01
+takes around 1 minute and 4GB of memory using the full input.