first part of day16 un-optimal

This commit is contained in:
Claudiu Farcas
2022-12-19 22:40:10 +02:00
parent 6cba23afc9
commit 23a96468b8
13 changed files with 636 additions and 5 deletions
+22
View File
@@ -0,0 +1,22 @@
namespace day16.test;
using FluentAssertions;
public class UnitTestProblem
{
[Fact]
public void TestProblem1()
{
var problem = new Problem();
problem.ResolvePart1("testdata.txt");
problem.Result1.Should().Be("1651");
}
[Fact]
public void TestProblem2()
{
var problem = new Problem();
problem.ResolvePart2("testdata.txt");
problem.Result2.Should().Be("1707");
}
}