summaryrefslogtreecommitdiff
path: root/03/main.scm
blob: 561fcd7635dd2d75ebbef800bb8acf7e0c2ccced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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))