Template for 2023 Day 24 & Day 25
This commit is contained in:
1261
2023/day25/input
Normal file
1261
2023/day25/input
Normal file
File diff suppressed because it is too large
Load Diff
22
2023/day25/main.go
Normal file
22
2023/day25/main.go
Normal 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")
|
||||
}
|
Reference in New Issue
Block a user