15 lines
193 B
Go
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))
|
|
}
|