27 lines
563 B
C#
27 lines
563 B
C#
using AdventOfCode.Core.Shared.IO;
|
|
|
|
namespace AdventOfCode.Solutions._2023
|
|
{
|
|
public class Day00 : IChallange
|
|
{
|
|
public int Year => 0;
|
|
|
|
public int Day => 0;
|
|
|
|
private readonly IInputReader _inputReader;
|
|
|
|
public Day00(IInputReader inputReader)
|
|
{
|
|
_inputReader = inputReader;
|
|
}
|
|
public async Task<string> GetSolutionPart1()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
public async Task<string> GetSolutionPart2()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
} |