Files
advent-of-code-2022/day18/ex2/main.go
2022-12-19 00:15:03 +01:00

15 lines
183 B
Go

package main
import (
"aoc2022/day18/common"
"bufio"
"fmt"
"os"
)
func main() {
grid := common.Parse(*bufio.NewScanner(os.Stdin))
fmt.Println(grid.GetTotalOutsideArea())
}