add 2nd december solution

This commit is contained in:
Daniel Aberger
2021-12-02 12:56:44 +01:00
parent 2a0771a313
commit d33f37336a
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()
}