summaryrefslogtreecommitdiff
path: root/6.scm
diff options
context:
space:
mode:
authorlamp2023-12-06 20:14:46 +0000
committerlamp2023-12-06 20:14:46 +0000
commitde3954129bfa3a746a313181cae71e1f384dda59 (patch)
treeb6fced528c73c2d82a95b8bc673d150630097923 /6.scm
parent92d487dc052788b0ef77071cccad2427c20f66df (diff)
add day 6 solutions
Diffstat (limited to '6.scm')
-rwxr-xr-x6.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/6.scm b/6.scm
new file mode 100755
index 0000000..9a440c4
--- /dev/null
+++ b/6.scm
@@ -0,0 +1,33 @@
+#!/usr/bin/env -S guile -s
+!#
+(use-modules (ice-9 regex)
+ (ice-9 textual-ports)
+ (srfi srfi-1))
+
+(define (read-lines port)
+ (letrec ((loop (lambda (l ls)
+ (if (eof-object? l)
+ ls
+ (loop (get-line port) (cons l ls))))))
+ (reverse (loop (get-line port) '()))))
+
+(define (split-up nums)
+ (map string->number (filter (lambda (x) (not (string-null? x))) (string-split nums char-set:whitespace))))
+
+(define (distance total-time hold-time)
+ (* (- total-time hold-time) hold-time))
+
+(define (all-distances time)
+ (let ((distances '()))
+ (do ((i 0 (1+ i))) ((> i time))
+ (set! distances (append distances `(,(distance time i)))))
+ distances))
+
+(let* ((port (open-input-file "6.txt"))
+ (lines (read-lines port))
+ (races (map (lambda (x y) (list x y))
+ (split-up (match:substring (string-match ": ([0-9| ]+)" (car lines)) 1))
+ (split-up (match:substring (string-match ": ([0-9| ]+)" (cadr lines)) 1))))
+ )
+ (close-port port)
+ (display (fold * 1 (map (lambda (x) (length (filter (lambda (y) (> y (cadr x))) (all-distances (car x))))) races))))