src/2021/days/day-01.lisp @ 68bbcb0ce4f7
2020/14
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 14 Dec 2021 20:18:56 -0500 |
parents |
166414163a73 |
children |
(none) |
(advent:defpackage* :advent/2021/01)
(in-package :advent/2021/01)
(define-problem (2021 1) (data read-numbers) (1754 1789)
(values
(iterate (for d :in (nthcdr 1 data))
(for p :in data)
(counting (> d p)))
;; The window total is a red herring. We only need to count when it
;; increases, and only increases when the number you're adding is larger
;; than the number you're subtracting.
(iterate (for d :in (nthcdr 3 data))
(for p :in data)
(counting (> d p)))))
#; Scratch --------------------------------------------------------------------