Remove duplicate files

This commit is contained in:
2022-11-28 22:55:50 -05:00
parent c0c9e45e49
commit 828083baae
12 changed files with 0 additions and 221 deletions

View File

@@ -1,13 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AOC Runner\AOC Runner.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,32 +0,0 @@
using AOC.Runner;
namespace AOC2023;
[ProblemInfo("2023", 0, "Test")]
public class TestProblem : IProblemBase
{
public void LoadInput()
{
Thread.Sleep(1000);
}
public void CalculatePart1()
{
Thread.Sleep(1000);
}
public void CalculatePart2()
{
Thread.Sleep(1000);
}
public void PrintPart1()
{
Console.WriteLine("Result");
}
public void PrintPart2()
{
Console.WriteLine("Result 2");
}
}