day 7 setup
This commit is contained in:
23
AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs
Normal file
23
AdventOfCode/Problems/AOC2025/Day7/Laboratories.cs
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,4 +4,4 @@ global using AdventOfCode.Utils;
|
|||||||
|
|
||||||
|
|
||||||
var runner = new AOCRunner();
|
var runner = new AOCRunner();
|
||||||
runner.RenderInteractiveMenu();
|
runner.WithDay(7).RenderInteractiveMenu();
|
||||||
|
|||||||
Reference in New Issue
Block a user