2020-12-11 04:21:50 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2020-12-14 23:27:46 +00:00
|
|
|
"git.annabunch.es/annabunches/adventofcode/2020/lib/util"
|
2020-12-11 04:21:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-12-25 09:12:18 +00:00
|
|
|
step := os.Args[1]
|
2020-12-14 23:27:46 +00:00
|
|
|
values := util.InputParserStrings(os.Args[2])
|
2020-12-11 04:21:50 +00:00
|
|
|
|
2020-12-25 09:12:18 +00:00
|
|
|
switch step {
|
|
|
|
case "1":
|
|
|
|
case "2":
|
|
|
|
}
|
2020-12-11 04:21:50 +00:00
|
|
|
}
|