AdventOfCode2025/AdventOfCode2026/Solution.cs
2025-12-01 13:34:09 +01:00

7 lines
No EOL
193 B
C#

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