advent-of-code-2023

My solutions to AoC 2023
git clone git://git.entf.net/advent-of-code-2023
Log | Files | Refs

commit 79070780854b628e3aec5095064ead5a73e2971b
parent 8d76db913773c02a383f070c9c57bb5b0a491cfc
Author: Lukas Henkel <lh@entf.net>
Date:   Sat,  9 Dec 2023 06:32:25 +0100

Add test for task 2

Diffstat:
Mt/day-9.lisp | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/t/day-9.lisp b/t/day-9.lisp @@ -4,8 +4,9 @@ (define-test test-day-9 () - (multiple-value-bind (task-1) + (multiple-value-bind (task-1 task-2) (aoc:run-day 9 "0 3 6 9 12 15 1 3 6 10 15 21 10 13 16 21 30 45") - (assert= 114 task-1))) + (assert= 114 task-1) + (assert= 2 task-2)))