From 7056c1516e544031e1e50bcc2be2c80465823a8b Mon Sep 17 00:00:00 2001 From: Amatsugu Date: Sat, 13 Dec 2025 14:11:04 -0500 Subject: [PATCH] day 7 setup --- .../Problems/AOC2025/Day7/Laboratories.cs | 23 +++++++++++++++++++ AdventOfCode/Program.cs | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs 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();