src/2019/days/day-02.lisp @ ff7c8ed35992
2021/01 (and add uncommitted stuff from 2020)
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Wed, 01 Dec 2021 20:54:23 -0500 |
| parents | 182bdd87fd9e |
| children | (none) |
(advent:defpackage* :advent/2019/02) (in-package :advent/2019/02) (define-problem (2019 2) (data read-numbers) (3790689 6533) (let ((program (fresh-vector data))) (flet ((run (a b) (setf (aref program 1) a (aref program 2) b) (advent/intcode:run program))) (values (run 12 2) (iterate (for-nested ((a :from 0 :to 99) (b :from 0 :to 99))) (when (= 19690720 (run a b)) (return (+ (* 100 a) b))))))))