diff options
| author | Mistivia <i@mistivia.com> | 2024-02-16 11:07:30 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2024-02-16 11:07:30 +0800 |
| commit | e1a5304af2c35ff83819546953309764e24656d4 (patch) | |
| tree | 8992bf2a489e4dc7f6ff3b9661aae5a50d08cab9 /advent-of-code/2023/07 | |
| parent | a19a1b970e5dd6983be8660ef6e0f5929fb5a149 (diff) | |
refactor from c to racket
Diffstat (limited to 'advent-of-code/2023/07')
| -rw-r--r-- | advent-of-code/2023/07/1.rkt (renamed from advent-of-code/2023/07/part1.rkt) | 2 | ||||
| -rw-r--r-- | advent-of-code/2023/07/2.rkt (renamed from advent-of-code/2023/07/part2.rkt) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/advent-of-code/2023/07/part1.rkt b/advent-of-code/2023/07/1.rkt index a22571d..635d6be 100644 --- a/advent-of-code/2023/07/part1.rkt +++ b/advent-of-code/2023/07/1.rkt @@ -1,4 +1,4 @@ -#lang racket +#lang racket/base (define input (with-input-from-file "input" diff --git a/advent-of-code/2023/07/part2.rkt b/advent-of-code/2023/07/2.rkt index 50d9526..e88f949 100644 --- a/advent-of-code/2023/07/part2.rkt +++ b/advent-of-code/2023/07/2.rkt @@ -1,4 +1,4 @@ -#lang racket +#lang racket/base (define input (with-input-from-file "input" |
