From 757b98fb30e75d7698a0986184d0303224db156c Mon Sep 17 00:00:00 2001 From: Prefetch Date: Tue, 26 Mar 2024 21:41:32 +0100 Subject: Publish days 6-10 --- 09/main.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 09/main.scm (limited to '09/main.scm') diff --git a/09/main.scm b/09/main.scm new file mode 100644 index 0000000..b4b540a --- /dev/null +++ b/09/main.scm @@ -0,0 +1,14 @@ +(import (chezscheme)) + +; Where the magic happens +(import (lib)) + +; Read my personal puzzle input +(define input + (call-with-input-file "input.txt" get-line)) + +; Part 1 gives 21037 for me +(printf "Part 1 solution: ~a\n" (solve-part1 input)) + +; Part 2 gives 9495 for me +(printf "Part 2 solution: ~a\n" (solve-part2 input)) -- cgit v1.2.3