Code formatting and warning fixing.

This commit is contained in:
2024-12-01 17:36:23 +01:00
parent 9f8d966b7a
commit dafd2526d1
93 changed files with 739 additions and 823 deletions

View File

@@ -7,8 +7,7 @@ public class Day12_Tests
{
Day12 day = new();
string result = day.ResolvePart1(new[]
{
string result = day.ResolvePart1([
"initial state: #..#.#..##......###...###",
"",
"...## => #",
@@ -25,7 +24,7 @@ public class Day12_Tests
"###.. => #",
"###.# => #",
"####. => #",
});
]);
Assert.Equal("325", result);
}