2023 Day 17 Complete

This commit is contained in:
2023-12-17 10:52:08 -06:00
parent a34f05d1af
commit d64a18280f
16 changed files with 517 additions and 131 deletions

View File

@@ -3,14 +3,14 @@ package main
import (
"fmt"
"../../"
h "git.bullercodeworks.com/brian/adventofcode/helpers"
)
// pt1 input: 3014387
func main() {
partOne := aoc.ArgIsSet("-1")
partOne := h.ArgIsSet("-1")
num := 3014387
if aoc.ArgIsSet("-test") {
if h.ArgIsSet("-test") {
num = 5 // Example
}
firstElf := CreateElf(1)