blob: c8f57bb68c9d10abff0d3bb963d4344aaa46b102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(import (chezscheme))
; Where the magic happens
(import (lib))
; Read my personal puzzle input
(define input
(call-with-input-file "input.txt"
(lambda (port)
(let loop ((line (get-line port))
(result '()))
(if (eof-object? line)
(reverse result)
(loop (get-line port) (cons line result)))))))
; Part 1 gives 466 for me
(printf "Part 1 solution: ~a\n" (solve-part1 input))
; Part 2 gives 251 for me
(printf "Part 2 solution: ~a\n" (solve-part2 input))
|