26 lines
570 B
C#
26 lines
570 B
C#
namespace AdventOfCode.Solutions._2023
|
|
{
|
|
public class Day17 : IChallange
|
|
{
|
|
public int Year => 2023;
|
|
public int Day => 17;
|
|
|
|
private readonly InputReader _inputReader;
|
|
|
|
public Day17(InputReader inputReader)
|
|
{
|
|
_inputReader = inputReader;
|
|
_inputReader.SetInput(this);
|
|
}
|
|
|
|
public async Task<string> GetSolutionPart1()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
public async Task<string> GetSolutionPart2()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
} |