Skip to content

Commit

Permalink
Add Day20 to App
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 20, 2023
1 parent a357405 commit 2b2d4a5
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 @@ -31,6 +31,7 @@
import io.github.zebalu.aoc2023.days.Day17;
import io.github.zebalu.aoc2023.days.Day18;
import io.github.zebalu.aoc2023.days.Day19;
import io.github.zebalu.aoc2023.days.Day20;

public class App {

Expand Down Expand Up @@ -65,6 +66,7 @@ public static void main(String[] args) {
exec(new DisplayData(17, "Clumsy Crucible", Day17::main));
exec(new DisplayData(18, "Lavaduct Lagoon", Day18::main));
exec(new DisplayData(19, "Aplenty", Day19::main));
exec(new DisplayData(20, "Pulse Propagation", Day20::main));
Instant end = Instant.now();
System.out.println("so far:\t"+Duration.between(start, end).toMillis()+" ms...");
}
Expand Down

0 comments on commit 2b2d4a5

Please sign in to comment.