13 lines
221 B
C#
13 lines
221 B
C#
namespace AdventOfCode.Core.Shared
|
|
{
|
|
public interface IChallange
|
|
{
|
|
int Year { get; }
|
|
int Day { get; }
|
|
|
|
Task<string> GetSolutionPart1();
|
|
|
|
Task<string> GetSolutionPart2();
|
|
}
|
|
}
|