2025 Day 4 Complete!

This commit is contained in:
2025-12-04 07:46:53 -06:00
parent c1bb5f02bb
commit 2f05062091
5 changed files with 436 additions and 2 deletions

View File

@@ -1,11 +1,11 @@
package main
import (
helpers "git.bullercodeworks.com/brian/adventofcode/helpers"
h "git.bullercodeworks.com/brian/adventofcode/helpers"
)
func main() {
inp := helpers.StdinToStringSlice()
inp := h.StdinToStringSlice()
part1(inp)
part2(inp)
}