-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
41 lines (39 loc) · 1.29 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package main
import (
"github.com/davidfregoli/advent-of-code-2022/day1"
"github.com/davidfregoli/advent-of-code-2022/day10"
"github.com/davidfregoli/advent-of-code-2022/day11"
"github.com/davidfregoli/advent-of-code-2022/day12"
"github.com/davidfregoli/advent-of-code-2022/day13"
"github.com/davidfregoli/advent-of-code-2022/day14"
"github.com/davidfregoli/advent-of-code-2022/day15"
"github.com/davidfregoli/advent-of-code-2022/day2"
"github.com/davidfregoli/advent-of-code-2022/day3"
"github.com/davidfregoli/advent-of-code-2022/day4"
"github.com/davidfregoli/advent-of-code-2022/day5"
"github.com/davidfregoli/advent-of-code-2022/day6"
"github.com/davidfregoli/advent-of-code-2022/day7"
"github.com/davidfregoli/advent-of-code-2022/day8"
"github.com/davidfregoli/advent-of-code-2022/day9"
. "github.com/davidfregoli/advent-of-code-2022/setup"
)
func main() {
var aoc AOC = AOC{Year: 2023}
aoc.Solve(day1.Problem)
aoc.Solve(day2.Problem)
aoc.Solve(day3.Problem)
aoc.Solve(day4.Problem)
aoc.Solve(day5.Problem)
aoc.Solve(day6.Problem)
aoc.Solve(day7.Problem)
aoc.Solve(day8.Problem)
aoc.Solve(day9.Problem)
aoc.Solve(day10.Problem)
aoc.Solve(day11.Problem)
aoc.Solve(day12.Problem)
aoc.Solve(day13.Problem)
aoc.Solve(day14.Problem)
aoc.Solve(day15.Problem)
aoc.Run()
aoc.Print()
}