diff options
author | Prefetch | 2024-03-02 19:36:12 +0100 |
---|---|---|
committer | Prefetch | 2024-03-02 19:36:12 +0100 |
commit | 1fbb07c54523c7a576bfff1cb689e155dd55f15a (patch) | |
tree | 7aa9f92a7d99ae9203b538803b7efefd846b67e0 /01/main.scm | |
parent | af589b238c1d51960d8af3b36041aca2bad7855b (diff) |
Add first five days
Diffstat (limited to '01/main.scm')
-rw-r--r-- | 01/main.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/01/main.scm b/01/main.scm new file mode 100644 index 0000000..9ec5afa --- /dev/null +++ b/01/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 1228 for me +(printf "Part 1 solution: ~a\n" (solve-part1 input)) + +; Part 2 gives 1238 for me +(printf "Part 2 solution: ~a\n" (solve-part2 input)) |