-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
106 lines (73 loc) · 4.72 KB
/
Program.cs
File metadata and controls
106 lines (73 loc) · 4.72 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
class Program
{
static void Main(string[] args)
{
// Console.WriteLine("Day01-1 " + AOC2024.Day01.Part1());
// Console.WriteLine("Day01-2 " + AOC2024.Day01.Part2());
// Console.WriteLine("Day02-1 " + AOC2024.Day02.Part1());
// Console.WriteLine("Day02-2 " + AOC2024.Day02.Part2());
// Console.WriteLine("Day03-1 " + new AOC2024.Day03().Part1());
// Console.WriteLine("Day03-2 " + new AOC2024.Day03().Part2());
// Console.WriteLine("Day04-1 " + new AOC2024.Day04().Part1());
// Console.WriteLine("Day04-2 " + new AOC2024.Day04().Part2());
// Console.WriteLine("Day05-1 " + new AOC2024.Day05().Part1());
// Console.WriteLine("Day05-2 " + new AOC2024.Day05().Part2());
// Console.WriteLine("Day06-1 " + new AOC2024.Day06().Part1());
// Console.WriteLine("Day06-2 " + new AOC2024.Day06().Part2());
// Console.WriteLine("Day07-1 " + new AOC2024.Day07().Part1());
// Console.WriteLine("Day07-2 " + new AOC2024.Day07().Part2());
// Console.WriteLine("Day08-1 " + new AOC2024.Day08().Part1());
// Console.WriteLine("Day08-2 " + new AOC2024.Day08().Part2());
// Console.WriteLine("Day09-1 " + new AOC2024.Day09().Part1());
// Console.WriteLine("Day09-2 " + new AOC2024.Day09().Part2());
// Console.WriteLine("Day10-1 " + new AOC2024.Day10().Part1());
// Console.WriteLine("Day10-2 " + new AOC2024.Day10().Part2());
// Console.WriteLine("Day11-1 " + new AOC2024.Day11().Part1());
// Console.WriteLine("Day11-2 " + new AOC2024.Day11().Part2());
// Console.WriteLine("Day12-1 " + new AOC2024.Day12().Part1());
// Console.WriteLine("Day12-2 " + new AOC2024.Day12().Part2());
// Console.WriteLine("Day13-1 " + AOC2024.Day13.Part1());
// Console.WriteLine("Day13-2 " + AOC2024.Day13.Part2());
// Console.WriteLine("Day14-1 " + AOC2024.Day14.Part1());
// AOC2024.Day14.Part2();
// Console.WriteLine("Day15-1 " + new AOC2024.Day15Part1().GetSolution());
// Console.WriteLine("Day15-2 " + new AOC2024.Day15Part2().GetSolution());
// Console.WriteLine("Day16-1 " + new AOC2024.Day16().Part1());
// Console.WriteLine("Day17-1 " + new AOC2024.Day17().Part1());
// Console.WriteLine("Day17-2 " + new AOC2024.Day17().Part2());
// Console.WriteLine("Day18-1 " + new AOC2024.Day18().Part1());
// Console.WriteLine("Day18-2 " + new AOC2024.Day18().Part2());
// Console.WriteLine("Day19-1 " + AOC2024.Day19.Part1());
// Console.WriteLine("Day19-2 " + AOC2024.Day19.Part2());
// Console.WriteLine("Day20-1 " + new AOC2024.Day20().Part1());
// Console.WriteLine("Day20-2 " + new AOC2024.Day20().Part2());
// Console.WriteLine("Day21-1 " + new AOC2024.Day21().Part1());
// Console.WriteLine("Day21-2 " + new AOC2024.Day21().Part2());
// Console.WriteLine("Day22-1 " + new AOC2024.Day22().Part1());
// Console.WriteLine("Day22-2 " + new AOC2024.Day22().Part2());
// Console.WriteLine("Day23-1 " + new AOC2024.Day23().Part1());
// Console.WriteLine("Day23-2 " + new AOC2024.Day23().Part2());
// Console.WriteLine("Day24-1 " + new AOC2024.Day24().Part1());
// Console.WriteLine("Day24-2 " + new AOC2024.Day24().Part2());
// Console.WriteLine("Day25-1 " + new AOC2024.Day25().Part1());
// Console.WriteLine("Day25-2 " + new AOC2024.Day25().Part2());
// Console.WriteLine("2025-Day01-1 " + AOC2025.Day01.Part1());
// Console.WriteLine("2025-Day01-2 " + AOC2025.Day01.Part2());
// Console.WriteLine("2025-Day02-1 " + AOC2025.Day02.Part1());
// Console.WriteLine("2025-Day02-2 " + AOC2025.Day02.Part2());
// Console.WriteLine("2025-Day03-1 " + AOC2025.Day03.Part1());
// Console.WriteLine("2025-Day03-2 " + AOC2025.Day03.Part2());
// Console.WriteLine("2025-Day04-1 " + AOC2025.Day04.Part1());
// Console.WriteLine("2025-Day04-2 " + AOC2025.Day04.Part2());
// Console.WriteLine("2025-Day05-1 " + AOC2025.Day05.Part1());
// Console.WriteLine("2025-Day05-2 " + AOC2025.Day05.Part2());
// Console.WriteLine("2025-Day06-1 " + AOC2025.Day06.Part1());
// Console.WriteLine("2025-Day06-2 " + AOC2025.Day06.Part2());
// Console.WriteLine("2025-Day08-1 " + AOC2025.Day08.Part1());
// Console.WriteLine("2025-Day08-2 " + AOC2025.Day08.Part2());
// Console.WriteLine("2025-Day10-1 " + AOC2025.Day10.Part1());
// Console.WriteLine("2025-Day10-2 " + AOC2025.Day10.Part2());
// Console.WriteLine("2025-Day11-1 " + AOC2025.Day11.Part1());
Console.WriteLine("2025-Day11-2 " + AOC2025.Day11.Part2());
}
}