diff options
Diffstat (limited to '2022/puzzle-2.lisp')
-rw-r--r-- | 2022/puzzle-2.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/2022/puzzle-2.lisp b/2022/puzzle-2.lisp index a17fdb2..d91795a 100644 --- a/2022/puzzle-2.lisp +++ b/2022/puzzle-2.lisp @@ -16,7 +16,8 @@ collect (let ((opponent (subseq strategy 0 1)) (yours (subseq strategy 2 3))) - (list (sensible-convert-input opponent) (sensible-convert-input yours)))))) + (list (sensible-convert-input opponent) + (sensible-convert-input yours)))))) (loop for round in rounds |