7 lines
No EOL
193 B
C#
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";
|
|
} |