Files
advent-of-code-2022/day17/ex2/main.go
2022-12-18 21:17:32 +01:00

17 lines
226 B
Go

package main
import (
"aoc2022/day17/common"
"bufio"
"fmt"
"os"
)
func main() {
chamber := common.Parse(*bufio.NewScanner(os.Stdin))
chamber.DropNRocks(1000000000000)
fmt.Println(chamber.GetHighestPoint())
}