AdventOfCode2025/AdventOfCode2025/Solution.cs
2025-12-02 07:38:08 +01:00

7 lines
No EOL
193 B
C#

namespace AdventOfCode2025;
public abstract class Solution
{
public virtual string SolvePart1() => "Part1 is not solved";
public virtual string SolvePart2() => "Part2 is not solved";
}