19 lines
404 B
C#
19 lines
404 B
C#
using AdventOfCode.Core;
|
|
|
|
namespace AdventOfCode.Solutions._2023
|
|
{
|
|
public class Day15(InputReader reader) : IChallange
|
|
{
|
|
private InputReader _inputReader = reader;
|
|
|
|
public async Task<string> GetSolutionPart1()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
public async Task<string> GetSolutionPart2()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
} |