-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
54 lines (41 loc) · 1001 Bytes
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"github.com/mscandan/advent-of-code-2022/day01"
"github.com/mscandan/advent-of-code-2022/day02"
"github.com/mscandan/advent-of-code-2022/day03"
"github.com/mscandan/advent-of-code-2022/day04"
"github.com/mscandan/advent-of-code-2022/day05"
"github.com/mscandan/advent-of-code-2022/day06"
"github.com/mscandan/advent-of-code-2022/day07"
"github.com/mscandan/advent-of-code-2022/day08"
"github.com/mscandan/advent-of-code-2022/day09"
"github.com/mscandan/advent-of-code-2022/day10"
"github.com/mscandan/advent-of-code-2022/day11"
"github.com/mscandan/advent-of-code-2022/day12"
)
func main() {
day01.Part1()
day01.Part2()
day02.Part1()
day02.Part2()
day03.Part1()
day03.Part2()
day04.Part1()
day04.Part2()
day05.Part1()
day05.Part2()
day06.Part1()
day06.Part2()
day07.Part1()
day07.Part2()
day08.Part1()
day08.Part2()
day09.Part1()
day09.Part2()
day10.Part1()
day10.Part2()
day11.Part1()
day11.Part2()
day12.Part1()
day12.Part2()
}