fix some issues in aoc template after day 10
This commit is contained in:
parent
4b737d59dc
commit
765c869942
1 changed files with 4 additions and 4 deletions
|
@ -22,12 +22,12 @@ template subtree.
|
|||
written in lower case. The code looks for these case sensitively.
|
||||
|
||||
* aoc
|
||||
|
||||
** common-lisp
|
||||
:PROPERTIES:
|
||||
:org-generate-root: ~/quicklisp/local-projects/aoc
|
||||
:org-generate-variable: year day
|
||||
:END
|
||||
:END:
|
||||
|
||||
*** src/
|
||||
**** {{year}}/
|
||||
***** day{{day}}.lisp
|
||||
|
@ -50,12 +50,12 @@ written in lower case. The code looks for these case sensitively.
|
|||
|
||||
|
||||
(defun parse-input (lines)
|
||||
(blocks-to-fs (mapcar #'parse-line lines)))
|
||||
(mapcar #'parse-line lines))
|
||||
|
||||
(defparameter input-text (first (test-input 2024 {{day}})))
|
||||
(defparameter input-data (parse-input input-text))
|
||||
|
||||
(defparameter sample-text "")
|
||||
(defparameter sample-text (aoc:split-lines ""))
|
||||
(defparameter sample-data
|
||||
(parse-input sample-text))
|
||||
|
||||
|
|
Loading…
Reference in a new issue