2024 rescaffold

This commit is contained in:
2025-11-25 13:10:32 -08:00
parent ca26da6b3b
commit 517dede130
26 changed files with 60 additions and 128 deletions

View File

@@ -5,9 +5,7 @@ import "core:log"
import "core:os"
day12 :: proc() {
input, ok := os.read_entire_file("input/01")
if !ok {
log.fatal("Failed to read input")
}
input := slurp_lines("input/12")
defer delete(input)
fmt.println("Solution for Day 12 is not implemented yet")
}