Files
adventofcode/dayTemplate/main.go
2025-12-04 07:46:53 -06:00

18 lines
213 B
Go

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