day 7 setup

This commit is contained in:
2025-12-13 14:11:04 -05:00
parent 07510227e9
commit 7056c1516e
2 changed files with 24 additions and 1 deletions

View File

@@ -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<long, long>
{
public override void CalculatePart1()
{
throw new NotImplementedException();
}
public override void CalculatePart2()
{
throw new NotImplementedException();
}
public override void LoadInput()
{
throw new NotImplementedException();
}
}

View File

@@ -4,4 +4,4 @@ global using AdventOfCode.Utils;
var runner = new AOCRunner();
runner.RenderInteractiveMenu();
runner.WithDay(7).RenderInteractiveMenu();