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 /03/main.scm | |
parent | af589b238c1d51960d8af3b36041aca2bad7855b (diff) |
Add first five days
Diffstat (limited to '03/main.scm')
-rw-r--r-- | 03/main.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/03/main.scm b/03/main.scm new file mode 100644 index 0000000..561fcd7 --- /dev/null +++ b/03/main.scm @@ -0,0 +1,13 @@ +(import (chezscheme)) + +; Where the magic happens +(import (lib)) + +; My personal puzzle input +(define input 289326) + +; Part 1 gives 419 for me +(printf "Part 1 solution: ~a\n" (solve-part1 input)) + +; Part 2 gives 295229 for me +(printf "Part 2 solution: ~a\n" (solve-part2 input)) |