17 lines
236 B
Go
17 lines
236 B
Go
package main
|
|
|
|
import (
|
|
"aoc2022/day12/common"
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
heightmap := common.Parse(*bufio.NewScanner(os.Stdin))
|
|
|
|
heightmap.ComputeStepsFromStart()
|
|
|
|
fmt.Println(heightmap.GetEndTile().GetSteps())
|
|
}
|