From 1a795e9ccefdcc086d4c890ec5ed527c786e0cf1 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 14 Dec 2021 01:23:19 +0000 Subject: Add inputs to 04 and fix tests --- test/03.lisp | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'test/03.lisp') diff --git a/test/03.lisp b/test/03.lisp index 000ece8..cc8085f 100644 --- a/test/03.lisp +++ b/test/03.lisp @@ -2,21 +2,19 @@ (defsuite 03/aoc (aoc)) -(defvar 03/default-input nil) - -(setf 03/default-input - '("00100" - "11110" - "10110" - "10111" - "10101" - "01111" - "00111" - "11100" - "10000" - "11001" - "00010" - "01010")) +(defvar 03/default-input + '("00100" + "11110" + "10110" + "10111" + "10101" + "01111" + "00111" + "11100" + "10000" + "11001" + "00010" + "01010")) (deftest 03/test-ex-a (03/aoc) (let ((result (03/part-a (03/parse-input-direct 03/default-input)))) -- cgit