Files
2022-12-17 19:07:12 +01:00

15 lines
193 B
Go

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