This commit is contained in:
2022-12-17 19:07:12 +01:00
parent cc58326f8c
commit 4c89c9a423
3 changed files with 247 additions and 0 deletions

14
day16/ex2/main.go Normal file
View File

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