21 lines
347 B
Go
21 lines
347 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
utils "git.anthonygueguen.fr/g3po/aoc2023/internal"
|
|
day04 "git.anthonygueguen.fr/g3po/aoc2023/internal/04"
|
|
)
|
|
|
|
func main() {
|
|
content := utils.Init()
|
|
|
|
fmt.Println("Part 1")
|
|
|
|
result := day04.GetResult(content)
|
|
fmt.Printf("Result: %d\n", result[0])
|
|
fmt.Println("Part 2")
|
|
|
|
fmt.Printf("Result: %d\n", result[1])
|
|
}
|