Files
advent-of-code-2022/day16/ex1/main.go
2022-12-17 19:07:12 +01:00

15 lines
194 B
Go

package main
import (
"aoc2022/day16/common"
"bufio"
"fmt"
"os"
)
func main() {
volcano := common.Parse(*bufio.NewScanner(os.Stdin))
fmt.Println(volcano.GetBestPath(30, false))
}