33 lines
420 B
C#
33 lines
420 B
C#
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");
|
|
}
|
|
}
|