Refactor to use interface IDay
This commit is contained in:
8
AdventOfCode2018/IDay.cs
Normal file
8
AdventOfCode2018/IDay.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace AdventOfCode2018
|
||||
{
|
||||
public interface IDay
|
||||
{
|
||||
string ResolvePart1(string[] inputs);
|
||||
string ResolvePart2(string[] inputs);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user