Day 24
This commit is contained in:
13
day24/ex1/main.go
Normal file
13
day24/ex1/main.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"aoc2022/day24/common"
|
||||
"bufio"
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
tileMap := common.Parse(*bufio.NewScanner(os.Stdin))
|
||||
fmt.Println(tileMap.GetDistanceToEnd(0))
|
||||
}
|
||||
Reference in New Issue
Block a user