Skip to content

Commit

Permalink
Compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iamFIREcracker committed Jan 29, 2024
1 parent 3c10a3b commit f4c006a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/2023/day08.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@

(define-solution (2023 08) (input parse-input)
(values (count-steps :aaa [eq _ :zzz] input)
(destructuring-bind (instructions . network) input
(destructuring-bind (_ . network) input
(declare (ignore _))
(bnd* ((start-nodes (keep-if [string-ends-with-p "A" (mkstr _)]
(alist-keys network) ))
(end? [string-ends-with-p "Z" (mkstr _)]))
Expand Down

0 comments on commit f4c006a

Please sign in to comment.