2019-12-01 13:42:53 +00:00
|
|
|
package main
|
|
|
|
|
2019-12-05 15:01:52 +00:00
|
|
|
import (
|
|
|
|
helpers "git.bullercodeworks.com/brian/adventofcode/helpers"
|
|
|
|
)
|
2019-12-01 13:42:53 +00:00
|
|
|
|
|
|
|
func main() {
|
2019-12-05 15:01:52 +00:00
|
|
|
inp := helpers.StdinToStringSlice()
|
2019-12-01 13:42:53 +00:00
|
|
|
part1(inp)
|
|
|
|
part2(inp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func part1(inp []string) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func part2(inp []string) {
|
|
|
|
}
|