blob: 4a10d4df218afbac8353904e70b6c871520d9480 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#lang racket
(define LINES (map
(lambda (line)
(let ((command (string-split line)))
(cons
(first command)
(map string->number (rest command)))))
(file->lines "input")))
(define (part-1)
(for/fold ([horizontal 0]
[depth 0]
#:result (* horizontal depth))
([command (in-list LINES)])
(match command
[(list "forward" amount) (values (+ horizontal amount) depth)]
[(list "up" amount) (values horizontal (- depth amount))]
[(list "down" amount) (values horizontal (+ depth amount))]
[_ (error "invalid command")])))
(define (part-2)
(for/fold ([aim 0]
[horizontal 0]
[depth 0]
#:result (* horizontal depth))
([command (in-list LINES)])
(match command
[(list "forward" amount) (values aim (+ horizontal amount) (+ depth (* aim amount)))]
[(list "up" amount) (values (- aim amount) horizontal depth)]
[(list "down" amount) (values (+ aim amount) horizontal depth)]
[_ (error "invalid command")])))
(time
(values
(part-1)
(part-2)))
|