This commit is contained in:
2022-12-19 00:15:03 +01:00
parent 4f2d85c51c
commit 3e927f2f70
3 changed files with 167 additions and 0 deletions

14
day18/ex1/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"aoc2022/day18/common"
"bufio"
"fmt"
"os"
)
func main() {
grid := common.Parse(*bufio.NewScanner(os.Stdin))
fmt.Println(grid.GetTotalExposedFaces())
}