made class static, no reason for it not to be

This commit is contained in:
2025-12-01 14:30:39 -05:00
parent d2970feed6
commit 6e4c1be9b7

View File

@@ -7,7 +7,7 @@ public interface IAdventSolution
public record struct AdventSolution(string PartOne, string PartTwo);
public class AdventSolver<T> where T : IAdventSolution, new()
public static class AdventSolver<T> where T : IAdventSolution, new()
{
public static void Solve(string input, int day, string title)
{