14 lines
179 B
C#
14 lines
179 B
C#
namespace AOC.Shared
|
|
{
|
|
public interface IProblemBase
|
|
{
|
|
void LoadInput();
|
|
|
|
void CalculatePart1();
|
|
|
|
void PrintPart1();
|
|
|
|
void CalculatePart2();
|
|
void PrintPart2();
|
|
}
|
|
} |