Files
adventofcode/dayTemplate/main.go
2025-12-06 08:24:31 -06:00

19 lines
228 B
Go

package main
import (
h "git.bullercodeworks.com/brian/adventofcode/helpers"
)
func main() {
inp := h.StdinToStringSlice()
part1(inp)
fmt.Println()
part2(inp)
}
func part1(inp []string) {
}
func part2(inp []string) {
}