Day01 part 1, statement and failing tests

This commit is contained in:
2018-12-07 23:46:42 +01:00
commit 7fe4f12015
12 changed files with 397 additions and 0 deletions

8
AdventOfCode2017/IDay.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace AdventOfCode2017
{
public interface IDay
{
string ResolvePart1(string[] inputs);
string ResolvePart2(string[] inputs);
}
}