Create AdventOfCode.Common.

This commit is contained in:
2023-12-03 02:44:22 +01:00
parent b42aaa09c0
commit fd09931145
15 changed files with 54 additions and 161 deletions

View File

@@ -0,0 +1,7 @@
namespace AdventOfCode.Common;
public interface IDay
{
string ResolvePart1(string[] inputs);
string ResolvePart2(string[] inputs);
}