feat: Add day 1
This commit is contained in:
parent
319a02e0fd
commit
8e8ca67091
8 changed files with 4594 additions and 0 deletions
7
AdventOfCode2026/InputReader.cs
Normal file
7
AdventOfCode2026/InputReader.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace AdventOfCode2026;
|
||||
|
||||
public static class InputReader
|
||||
{
|
||||
private const string BasePath = "../../../Inputs/";
|
||||
public static IEnumerable<string> ReadLines(int day, int partNumber = 1) => File.ReadAllLines($"{BasePath}Day{day}_{partNumber}.txt");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue