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