Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafluri committed Dec 18, 2023
2 parents 39159b5 + 6959a83 commit 8d13b1b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
3 changes: 3 additions & 0 deletions AdventOfCode/AdventOfCode.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
<None Update="Inputs\18.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Inputs\19.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
32 changes: 32 additions & 0 deletions AdventOfCode/Day19.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using System.Text.RegularExpressions;

namespace AdventOfCode;

// Runtime Total: ~Xms
// Setup: ~Xms
// Part 1: ~Xms
// Part 2: ~Xms
public class Day19 : BaseDay
{
private List<string> _input;


public Day19()
{
_input = File.ReadAllLines(InputFilePath).ToList();
}



public override ValueTask<string> Solve_1()
{

return new (0.ToString());
}

public override ValueTask<string> Solve_2()
{

return new (0.ToString());
}
}
Empty file added AdventOfCode/Inputs/19.txt
Empty file.

0 comments on commit 8d13b1b

Please # to comment.