feat: Add day 1

This commit is contained in:
Roman Spring 2025-12-01 13:34:09 +01:00
parent 319a02e0fd
commit 8e8ca67091
8 changed files with 4594 additions and 0 deletions

View 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");
}