Add AoC 2025 project structure and first solutions
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace AdvenOfCode.Contracts;
|
||||
|
||||
public interface IPuzzleSolver<T>
|
||||
{
|
||||
public T SolvePart1(string puzzleInputPath);
|
||||
public T SolvePart2(string puzzleInputPath);
|
||||
}
|
||||
Reference in New Issue
Block a user