feat: Add day 1
This commit is contained in:
parent
319a02e0fd
commit
8e8ca67091
8 changed files with 4594 additions and 0 deletions
7
AdventOfCode2026/Solution.cs
Normal file
7
AdventOfCode2026/Solution.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace AdventOfCode2026;
|
||||
|
||||
public abstract class Solution
|
||||
{
|
||||
public virtual string SolvePart1() => "Part1 is not solved";
|
||||
public virtual string SolvePart2() => "Part2 is not solved";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue