diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-17 14:12:46 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-17 14:14:38 +0100 |
commit | d3ed2f503e58c604bb85dc3487fda3d1191313b4 (patch) | |
tree | b38ceedc940e8cbd1ab8bddfa6bc7a059ed553eb /2022/puzzle-2.lisp | |
parent | 14f428b3a38d0fb1a04de13055e08fc2a4536397 (diff) | |
download | advent-of-code-d3ed2f503e58c604bb85dc3487fda3d1191313b4.tar.gz advent-of-code-d3ed2f503e58c604bb85dc3487fda3d1191313b4.tar.bz2 advent-of-code-d3ed2f503e58c604bb85dc3487fda3d1191313b4.zip |
Version control lib.lisp
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 |