mirror of
https://github.com/parnic/advent-of-code-2022.git
synced 2025-06-16 21:41:53 -05:00
Initial commit - framework
This commit is contained in:
25
src/Template.cs
Normal file
25
src/Template.cs
Normal file
@ -0,0 +1,25 @@
|
||||
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>";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user