AdventOfCode2025/AdventOfCode2025/Solutions/Solution.cs

11 lines
No EOL
352 B
C#

using AdventOfCode2025.Inputs;
namespace AdventOfCode2025.Solutions;
public abstract class Solution(int day, string tag = "1")
{
protected readonly int Day = day;
protected readonly Input Input = new(day, tag);
public virtual string SolvePart1() => "Part1 is not solved";
public virtual string SolvePart2() => "Part2 is not solved";
}