diff options
author | Marvin Borner | 2021-12-02 16:11:20 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-02 16:11:20 +0100 |
commit | f504d00a116a5f8ee090188a98ad54f894a9732b (patch) | |
tree | d5baba513cc9b6efae4b81bf5da9fdcc581df1b2 /2021/02 | |
parent | b0fce9d8e9dcbb508a6a5c1e953882a97be1fb34 (diff) |
rakete
Diffstat (limited to '2021/02')
-rw-r--r-- | 2021/02/solve.rkt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/2021/02/solve.rkt b/2021/02/solve.rkt new file mode 100644 index 0000000..4a10d4d --- /dev/null +++ b/2021/02/solve.rkt @@ -0,0 +1,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))) |