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