diff options
Diffstat (limited to 'advent-of-code/2022/01')
| -rw-r--r-- | advent-of-code/2022/01/1.rkt | 2 | ||||
| -rw-r--r-- | advent-of-code/2022/01/2.rkt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/advent-of-code/2022/01/1.rkt b/advent-of-code/2022/01/1.rkt index e7c335e..e8d1f23 100644 --- a/advent-of-code/2022/01/1.rkt +++ b/advent-of-code/2022/01/1.rkt @@ -4,7 +4,7 @@ (define lines (call-with-input-file "input" - (lambda (fp) + (λ (fp) (get-lines fp)))) (define elves (split-list-by "" lines)) diff --git a/advent-of-code/2022/01/2.rkt b/advent-of-code/2022/01/2.rkt index 1644885..e7b70ab 100644 --- a/advent-of-code/2022/01/2.rkt +++ b/advent-of-code/2022/01/2.rkt @@ -4,7 +4,7 @@ (define lines (call-with-input-file "input" - (lambda (fp) + (λ (fp) (get-lines fp)))) (define elves (split-list-by "" lines)) |
