This repository has been archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
81 lines (55 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package main
import (
"github.com/javorszky/adventofcode2020/day1"
"github.com/javorszky/adventofcode2020/day10"
"github.com/javorszky/adventofcode2020/day11"
"github.com/javorszky/adventofcode2020/day12"
"github.com/javorszky/adventofcode2020/day13"
"github.com/javorszky/adventofcode2020/day14"
"github.com/javorszky/adventofcode2020/day15"
"github.com/javorszky/adventofcode2020/day16"
"github.com/javorszky/adventofcode2020/day17"
"github.com/javorszky/adventofcode2020/day18"
"github.com/javorszky/adventofcode2020/day19"
"github.com/javorszky/adventofcode2020/day2"
"github.com/javorszky/adventofcode2020/day20"
"github.com/javorszky/adventofcode2020/day21"
"github.com/javorszky/adventofcode2020/day22"
"github.com/javorszky/adventofcode2020/day23"
"github.com/javorszky/adventofcode2020/day24"
"github.com/javorszky/adventofcode2020/day25"
"github.com/javorszky/adventofcode2020/day3"
"github.com/javorszky/adventofcode2020/day4"
"github.com/javorszky/adventofcode2020/day5"
"github.com/javorszky/adventofcode2020/day6"
"github.com/javorszky/adventofcode2020/day7"
"github.com/javorszky/adventofcode2020/day8"
"github.com/javorszky/adventofcode2020/day9"
)
func main() {
day1.Tasks()
day2.Tasks()
day3.Tasks()
day4.Tasks()
day5.Tasks()
day6.Tasks()
day7.Tasks()
day8.Tasks()
day9.Tasks()
day10.Tasks()
day11.Tasks()
day12.Tasks()
day13.Tasks()
day14.Tasks()
day15.Tasks()
day16.Tasks()
day17.Tasks()
day18.Tasks()
day19.Tasks()
day20.Tasks()
day21.Tasks()
day22.Tasks()
day23.Tasks()
day24.Tasks()
day25.Tasks()
}