start 2024, 2024-01

This commit is contained in:
2025-11-25 11:22:03 -08:00
parent ef109439e6
commit ca26da6b3b
56 changed files with 20577 additions and 22 deletions

13
2024/17.odin Normal file
View File

@@ -0,0 +1,13 @@
package aoc
import "core:fmt"
import "core:log"
import "core:os"
day17 :: proc() {
input, ok := os.read_entire_file("input/01")
if !ok {
log.fatal("Failed to read input")
}
fmt.println("Solution for Day 17 is not implemented yet")
}