Template for 2023 Day 24 & Day 25

This commit is contained in:
2023-12-27 11:47:38 -06:00
parent 109ce307e2
commit 4cfa9412b3
4 changed files with 1605 additions and 0 deletions

1261
2023/day25/input Normal file

File diff suppressed because it is too large Load Diff

22
2023/day25/main.go Normal file
View File

@@ -0,0 +1,22 @@
package main
import (
"fmt"
h "git.bullercodeworks.com/brian/adventofcode/helpers"
)
func main() {
inp := h.StdinToStringSlice()
part1(inp)
fmt.Println()
part2(inp)
}
func part1(inp []string) {
fmt.Println("# Part 1")
}
func part2(inp []string) {
fmt.Println("# Part 2")
}