namespace AOC2022.Puzzles;
internal interface IPuzzle
{
void SolveFirstPuzzle();
void SolveSecondPuzzle();
}