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,11 +7,11 @@ public class Day02_Tests
{
Day02 day02 = new();
string result = day02.ResolvePart1(new[] {
string result = day02.ResolvePart1([
"5 1 9 5",
"7 5 3",
"2 4 6 8",
});
]);
Assert.Equal("18", result);
}
@@ -21,11 +21,11 @@ public class Day02_Tests
{
Day02 day02 = new();
string result = day02.ResolvePart2(new[] {
string result = day02.ResolvePart2([
"5 9 2 8",
"9 4 7 3",
"3 8 6 5",
});
]);
Assert.Equal("9", result);
}