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