This repository has been archived on 2021-12-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2021-12-01 11:41:37 +01:00
|
|
|
package main
|
|
|
|
|
|
2021-12-02 12:47:13 +01:00
|
|
|
import (
|
|
|
|
|
"adventofcode/pkg/one"
|
2021-12-04 02:23:29 +01:00
|
|
|
"adventofcode/pkg/three"
|
2021-12-02 12:47:13 +01:00
|
|
|
"adventofcode/pkg/two"
|
|
|
|
|
"fmt"
|
|
|
|
|
)
|
2021-12-01 11:41:37 +01:00
|
|
|
|
|
|
|
|
func main() {
|
2021-12-02 12:47:13 +01:00
|
|
|
fmt.Println("Day 1")
|
2021-12-01 11:41:37 +01:00
|
|
|
one.Run()
|
2021-12-02 12:47:13 +01:00
|
|
|
fmt.Println("Day 2")
|
|
|
|
|
two.Run()
|
2021-12-04 02:23:29 +01:00
|
|
|
fmt.Println("Day 3")
|
|
|
|
|
three.Run()
|
2021-12-01 11:41:37 +01:00
|
|
|
}
|