Skip to content

Commit

Permalink
add to App
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 18, 2023
1 parent 2d8fb39 commit 41fa99e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aoc2023/src/main/java/io/github/zebalu/aoc2023/main/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import io.github.zebalu.aoc2023.days.Day15;
import io.github.zebalu.aoc2023.days.Day16;
import io.github.zebalu.aoc2023.days.Day17;
import io.github.zebalu.aoc2023.days.Day18;

public class App {

Expand Down Expand Up @@ -61,6 +62,7 @@ public static void main(String[] args) {
exec(new DisplayData(15, "Lens Library", Day15::main));
exec(new DisplayData(16, "The Floor Will Be Lava", Day16::main));
exec(new DisplayData(17, "Clumsy Crucible", Day17::main));
exec(new DisplayData(18, "Lavaduct Lagoon", Day18::main));
Instant end = Instant.now();
System.out.println("so far:\t"+Duration.between(start, end).toMillis()+" ms...");
}
Expand Down

0 comments on commit 41fa99e

Please sign in to comment.