AdventOfCode/AdventOfCode.Solutions/2022/Day 12/Day12Part2.cs
Rob 3846b42b7e Massive code base change
partial completion of day 3
2023-12-03 19:09:26 +01:00

15 lines
366 B
C#

namespace AdventOfCode.Solutions._2022
{
public class Day12Part2 : Answerable
{
public override int Year { get; set; } = 2022;
public override int Day { get; set; } = 12;
public override int Part { get; set; } = 2;
public override string GetAnswer(byte[] data)
{
return string.Empty;
}
}
}