diff --git a/AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs b/AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs new file mode 100644 index 0000000..c26cda4 --- /dev/null +++ b/AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace AdventOfCode.Problems.AOC2025.Day7; +[ProblemInfo(2025, 7, "Laboratories")] +internal class Laboratories : Problem +{ + public override void CalculatePart1() + { + throw new NotImplementedException(); + } + + public override void CalculatePart2() + { + throw new NotImplementedException(); + } + + public override void LoadInput() + { + throw new NotImplementedException(); + } +} diff --git a/AdventOfCode/Program.cs b/AdventOfCode/Program.cs index 248aa77..29d0831 100644 --- a/AdventOfCode/Program.cs +++ b/AdventOfCode/Program.cs @@ -4,4 +4,4 @@ global using AdventOfCode.Utils; var runner = new AOCRunner(); -runner.RenderInteractiveMenu(); +runner.WithDay(7).RenderInteractiveMenu();