about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2021-12-25 00:21:07 +0100
committerLeah Neukirchen <leah@vuxu.org>2021-12-25 00:21:07 +0100
commit01eae09c06e680f5ad9c7845d6ad33bcac458330 (patch)
treee36ef036935968c959e3069eec58dfe2eefa63d3
parentf1540e4b12a710ad647c75bf8c4396bbc3e10144 (diff)
downloadadventofcode2021-01eae09c06e680f5ad9c7845d6ad33bcac458330.tar.gz
adventofcode2021-01eae09c06e680f5ad9c7845d6ad33bcac458330.tar.xz
adventofcode2021-01eae09c06e680f5ad9c7845d6ad33bcac458330.zip
day23
-rw-r--r--day235
-rw-r--r--day23.clj6
2 files changed, 11 insertions, 0 deletions
diff --git a/day23 b/day23
new file mode 100644
index 0000000..303dc6a
--- /dev/null
+++ b/day23
@@ -0,0 +1,5 @@
+#############
+#...........#
+###B#B#C#D###
+  #D#A#A#C#
+  #########
diff --git a/day23.clj b/day23.clj
new file mode 100644
index 0000000..37fb2eb
--- /dev/null
+++ b/day23.clj
@@ -0,0 +1,6 @@
+(ns org.vuxu.aoc2021.day23)
+
+;; pen & paper
+
+(def part1 15109)
+(def part2 53751)