diff options
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)) |