Skip to content

Commit

Permalink
Add day template files
Browse files Browse the repository at this point in the history
  • Loading branch information
ArttuOll committed Dec 12, 2023
1 parent dd8d6d2 commit 338e81a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
18 changes: 18 additions & 0 deletions AdventOfCode/DayTemplate.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
namespace AdventOfCode;
public sealed class Day0X : BaseDay
{
private readonly string _input;
public Day0X()
{
_input = File.ReadAllText(InputFilePath);
}
public override ValueTask<string> Solve_1() => new($"Solution to {ClassPrefix} {CalculateIndex()}, part 1");
public override ValueTask<string> Solve_2() => new($"Solution to {ClassPrefix} {CalculateIndex()}, part 2");
}
*/

9 changes: 9 additions & 0 deletions AdventOfCodeTests/DayTemplate.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace TestProject1;

public class Day0XTest
{
[Fact]
public void Test()
{
}
}

0 comments on commit 338e81a

Please sign in to comment.