2019 day 9 Complete!
This commit is contained in:
17
2019/day08/main.go
Normal file
17
2019/day08/main.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
helpers "git.bullercodeworks.com/brian/adventofcode/helpers"
|
||||
)
|
||||
|
||||
func main() {
|
||||
inp := helpers.StdinToStringSlice()
|
||||
part1(inp)
|
||||
part2(inp)
|
||||
}
|
||||
|
||||
func part1(inp []string) {
|
||||
}
|
||||
|
||||
func part2(inp []string) {
|
||||
}
|
Reference in New Issue
Block a user