diff --git a/AdventOfCode2025/AdventSolution.cs b/AdventOfCode2025/AdventSolution.cs index c2599da..17a82b3 100644 --- a/AdventOfCode2025/AdventSolution.cs +++ b/AdventOfCode2025/AdventSolution.cs @@ -7,7 +7,7 @@ public interface IAdventSolution public record struct AdventSolution(string PartOne, string PartTwo); -public class AdventSolver where T : IAdventSolution, new() +public static class AdventSolver where T : IAdventSolution, new() { public static void Solve(string input, int day, string title) {