aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/01/solver.lisp
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-02-05 21:59:47 +0100
committerOscar Najera <hi@oscarnajera.com>2023-02-05 22:49:20 +0100
commit57e563bf8f4fae7364118619318b338f16792473 (patch)
treec21701f70f1440fa8078531929e883f4437e9577 /AoC2022/01/solver.lisp
parent4daf41bd69e01f137be90881ec419b3c045a2ec5 (diff)
downloadscratch-57e563bf8f4fae7364118619318b338f16792473.tar.gz
scratch-57e563bf8f4fae7364118619318b338f16792473.tar.bz2
scratch-57e563bf8f4fae7364118619318b338f16792473.zip
working with more stuff
Diffstat (limited to 'AoC2022/01/solver.lisp')
-rwxr-xr-xAoC2022/01/solver.lisp40
1 files changed, 32 insertions, 8 deletions
diff --git a/AoC2022/01/solver.lisp b/AoC2022/01/solver.lisp
index d39bb7c..dd09c07 100755
--- a/AoC2022/01/solver.lisp
+++ b/AoC2022/01/solver.lisp
@@ -2,22 +2,46 @@
(ql:quickload '(:uiop :fiveam))
-(defun elves-rations ()
+(defun elves-rations (input)
(reduce
(lambda (acc value)
- (if (string= value "")
+ (if (equal value "")
(cons 0 acc)
(progn
(incf (car acc) (parse-integer value))
acc)))
- (uiop:read-file-lines "input")
+ input
:initial-value (list 0)))
+(defun elves-rations-nc (filename)
+ (with-open-file (in filename)
+ (let ((acc (list 0)))
+ (loop for line = (read-line in nil) while line
+ for num = (parse-integer line :junk-allowed t)
+ if (numberp num) do
+ (incf (car acc) num)
+ else do
+ (push 0 acc))
+ acc)))
+
+(defun elves-rations-max (filename)
+ (with-open-file (in filename)
+ (let ((max 0)
+ (elf 0))
+ (loop for line = (read-line in nil) while line
+ for num = (parse-integer line :junk-allowed t)
+ if (numberp num) do
+ (incf elf num)
+ else do
+ (setf max (max elf max))
+ (setf elf 0))
+ (max elf max))))
+
(fiveam:test results
- (let ((rations (elves-rations)))
+ (let ((rations (elves-rations (uiop:read-file-lines "input"))))
;; calculate the maximum from each elves rations
- (fiveam:is (= 75622 (apply #'max rations)))
+ (fiveam:is (= 75622 (reduce #'max rations)))
+ (fiveam:is (= 75622 (reduce #'max (elves-rations-nc "input"))))
+ (fiveam:is (= 75622 (elves-rations-max "input")))
;; calculate the maximum from each elves rations
- (fiveam:is (= 213159 (apply #'+ (subseq (sort rations #'>) 0 3))))))
-
-
+ (fiveam:is (= 213159 (reduce #'+ (subseq (sort rations #'>) 0 3))))))