X-Git-Url: http://git.jkinsey.net/?p=adventofcode2020.git;a=blobdiff_plain;f=src%2FdayNN.lisp;h=9e8375083c17bd93011d5861ffec96b26ac418b0;hp=5b5dd9bb2043210f815f1e0ae076547a436155ab;hb=59b2be1021c6308929890c59f2ed5d187337a003;hpb=e69214f6f0191786d2e782af3f79831b44bb5178 diff --git a/src/dayNN.lisp b/src/dayNN.lisp index 5b5dd9b..9e83750 100644 --- a/src/dayNN.lisp +++ b/src/dayNN.lisp @@ -1,16 +1,18 @@ +(asdf:load-system :adventofcode2020) (in-package #:adventofcode2020) +(named-readtables:in-readtable :adventofcode2020) (day 00 input - (let ((modules (int-list-from input))) - (part1 ) - (part2 ))) + (let ((lines (list-from input))) + (part1 '()) + (part2 '()))) (def-suite day00) (in-suite day00) -(test simple-fuel +(test (is (equal - '(2 2 654 33583) - (mapcar #'simple-fuel '(12 14 1969 100756))))) + '() + '()))) (run! 'day00)