Skip to content

Commit

Permalink
Add day24 to app
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 25, 2023
1 parent 1ea30c2 commit 6d5a603
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 @@ -35,6 +35,7 @@
import io.github.zebalu.aoc2023.days.Day21;
import io.github.zebalu.aoc2023.days.Day22;
import io.github.zebalu.aoc2023.days.Day23;
import io.github.zebalu.aoc2023.days.Day24;

public class App {

Expand Down Expand Up @@ -73,6 +74,7 @@ public static void main(String[] args) {
exec(new DisplayData(21, "Step Counter", Day21::main));
exec(new DisplayData(22, "Sand Slabs", Day22::main));
exec(new DisplayData(23, "A Long Walk", Day23::main));
exec(new DisplayData(24, "Never Tell Me The Odds", Day24::main));
Instant end = Instant.now();
System.out.println("so far:\t"+Duration.between(start, end).toMillis()+" ms...");
}
Expand Down

0 comments on commit 6d5a603

Please sign in to comment.