-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
24 lines (20 loc) · 1008 Bytes
/
Main.java
File metadata and controls
24 lines (20 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class Main {
public static void main(String[] args) throws Exception {
System.out.println("--- Advent of Code 2024 ---");
System.out.println("--- Day 1 ---");
System.out.println("Day 1 level 1: " + Day1.level1());
System.out.println("Day 1 level 2: " + Day1.level2());
System.out.println("--- Day 2 ---");
System.out.println("Day 2 level 1: " + Day2.level1());
System.out.println("Day 2 level 2: " + Day2.level2());
System.out.println("--- Day 3 ---");
System.out.println("Day 3 level 1: " + Day3.level1());
System.out.println("Day 3 level 2: " + Day3.level2());
System.out.println("--- Day 4 ---");
System.out.println("Day 4 level 1: " + Day4.level1());
System.out.println("Day 4 level 2: " + Day4.level2());
System.out.println("--- Day 5 ---");
System.out.println("Day 5 level 1: " + Day5.level1());
System.out.println("Day 5 level 2: " + Day5.level2());
}
}