AdventOfCode 2023 Day11

This commit is contained in:
2023-12-14 02:57:59 +01:00
parent b2f6482db4
commit edc24dcb65
3 changed files with 380 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
namespace AdventOfCode2023.Tests;
public class Day11_Tests
{
private readonly string[] _example1 = {
"...#......",
".......#..",
"#.........",
"..........",
"......#...",
".#........",
".........#",
"..........",
".......#..",
"#...#.....",
};
[Fact]
public void ResolvePart1__Example1()
{
Day11 day = new();
string result = day.ResolvePart1(_example1);
Assert.Equal("374", result);
}
}