add 4th december solutions

This commit is contained in:
Daniel Aberger
2021-12-05 10:11:42 +01:00
parent e6563a9ad7
commit 77ed7aeeb7
3 changed files with 781 additions and 0 deletions
+3
View File
@@ -1,6 +1,7 @@
package main
import (
"adventofcode/pkg/four"
"adventofcode/pkg/one"
"adventofcode/pkg/three"
"adventofcode/pkg/two"
@@ -15,4 +16,6 @@ func main() {
two.Run()
fmt.Println("Day 3️⃣")
three.Run()
fmt.Println("Day 4️⃣")
four.Run()
}