mirror of
https://github.com/parnic/advent-of-code-2022.git
synced 2025-06-16 05:30:14 -05:00
26 lines
352 B
C#
26 lines
352 B
C#
namespace aoc2022;
|
|
|
|
internal class DayTemplate : Day
|
|
{
|
|
IEnumerable<string>? lines;
|
|
|
|
internal override void Parse()
|
|
{
|
|
lines = Util.ReadAllLines("inputs/##.txt");
|
|
}
|
|
|
|
internal override string Part1()
|
|
{
|
|
|
|
|
|
return $"<+white>";
|
|
}
|
|
|
|
internal override string Part2()
|
|
{
|
|
|
|
|
|
return $"<+white>";
|
|
}
|
|
}
|