Skip to content

Commit

Permalink
extend app with day 25
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 27, 2023
1 parent 2b4d0f3 commit 05c2777
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 @@ -36,6 +36,7 @@
import io.github.zebalu.aoc2023.days.Day22;
import io.github.zebalu.aoc2023.days.Day23;
import io.github.zebalu.aoc2023.days.Day24;
import io.github.zebalu.aoc2023.days.Day25;

public class App {

Expand Down Expand Up @@ -75,6 +76,7 @@ public static void main(String[] args) {
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));
exec(new DisplayData(25, "Snowverload", Day25::main));
Instant end = Instant.now();
System.out.println("so far:\t"+Duration.between(start, end).toMillis()+" ms...");
}
Expand Down

0 comments on commit 05c2777

Please sign in to comment.