From e47cc180cb3cecce9b249e3a3162bdfb173fddd8 Mon Sep 17 00:00:00 2001 From: Adrian Braemer <11058200+NobodysHero@users.noreply.github.com> Date: Sun, 16 Dec 2018 12:16:44 +0100 Subject: [PATCH] Removed random paren in day14.lisp --- day14.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day14.lisp b/day14.lisp index 1c80f3f..257e014 100644 --- a/day14.lisp +++ b/day14.lisp @@ -16,7 +16,7 @@ :for (rest digit) := (multiple-value-list (floor number 10)) :then (multiple-value-list (floor rest 10)) :collect digit - :while (> rest 0))))) + :while (> rest 0)))) (defun day14 (&optional (input 327901)) (loop :with recipes := (day14-prepare-recipes input)