add 2nd december solution

This commit is contained in:
Daniel Aberger
2021-12-02 12:47:13 +01:00
parent 5b5790e2e2
commit 188e213068
3 changed files with 1100 additions and 1 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
package main
import "adventofcode/pkg/one"
import (
"adventofcode/pkg/one"
"adventofcode/pkg/two"
"fmt"
)
func main() {
fmt.Println("Day 1")
one.Run()
fmt.Println("Day 2")
two.Run()
}