@@ -18,6 +18,19 @@ import (
18
18
"github.com/anurse/advent-of-code/day10"
19
19
"github.com/anurse/advent-of-code/day11"
20
20
"github.com/anurse/advent-of-code/day12"
21
+ "github.com/anurse/advent-of-code/day13"
22
+ "github.com/anurse/advent-of-code/day14"
23
+ "github.com/anurse/advent-of-code/day15"
24
+ "github.com/anurse/advent-of-code/day16"
25
+ "github.com/anurse/advent-of-code/day17"
26
+ "github.com/anurse/advent-of-code/day18"
27
+ "github.com/anurse/advent-of-code/day19"
28
+ "github.com/anurse/advent-of-code/day20"
29
+ "github.com/anurse/advent-of-code/day21"
30
+ "github.com/anurse/advent-of-code/day22"
31
+ "github.com/anurse/advent-of-code/day23"
32
+ "github.com/anurse/advent-of-code/day24"
33
+ "github.com/anurse/advent-of-code/day25"
21
34
)
22
35
23
36
func init () {
@@ -33,6 +46,19 @@ func init() {
33
46
advent .RegisterDay (10 , advent .WithInputFileAsLines (day10 .Run ))
34
47
advent .RegisterDay (11 , advent .WithInputFileAsLines (day11 .Run ))
35
48
advent .RegisterDay (12 , advent .WithInputFileAsLines (day12 .Run ))
49
+ advent .RegisterDay (13 , advent .WithInputFileAsLines (day13 .Run ))
50
+ advent .RegisterDay (14 , advent .WithInputFileAsLines (day14 .Run ))
51
+ advent .RegisterDay (15 , advent .WithInputFileAsLines (day15 .Run ))
52
+ advent .RegisterDay (16 , advent .WithInputFileAsLines (day16 .Run ))
53
+ advent .RegisterDay (17 , advent .WithInputFileAsLines (day17 .Run ))
54
+ advent .RegisterDay (18 , advent .WithInputFileAsLines (day18 .Run ))
55
+ advent .RegisterDay (19 , advent .WithInputFileAsLines (day19 .Run ))
56
+ advent .RegisterDay (20 , advent .WithInputFileAsLines (day20 .Run ))
57
+ advent .RegisterDay (21 , advent .WithInputFileAsLines (day21 .Run ))
58
+ advent .RegisterDay (22 , advent .WithInputFileAsLines (day22 .Run ))
59
+ advent .RegisterDay (23 , advent .WithInputFileAsLines (day23 .Run ))
60
+ advent .RegisterDay (24 , advent .WithInputFileAsLines (day24 .Run ))
61
+ advent .RegisterDay (25 , advent .WithInputFileAsLines (day25 .Run ))
36
62
}
37
63
38
64
func main () {
0 commit comments