add 3rd december solutions (the most embarassing piece of shit i ever delivered and i should quit programming and become a fucking trashman)

This commit is contained in:
Daniel Aberger
2021-12-04 02:23:29 +01:00
parent 692ff760d2
commit 69bcb419ed
3 changed files with 1271 additions and 0 deletions
+3
View File
@@ -2,6 +2,7 @@ package main
import (
"adventofcode/pkg/one"
"adventofcode/pkg/three"
"adventofcode/pkg/two"
"fmt"
)
@@ -11,4 +12,6 @@ func main() {
one.Run()
fmt.Println("Day 2")
two.Run()
fmt.Println("Day 3")
three.Run()
}