AdventOfCode2024 Day01 Part 1

This commit is contained in:
2024-12-01 07:49:47 +01:00
parent c30fc4bf51
commit 39b543346d
4 changed files with 1098 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
namespace AdventOfCode2024.Tests;
public class Day01_Tests
{
[Fact]
public void ResolvePart1__Example()
{
var day = new Day01();
string result = day.ResolvePart1(new[] {
"3 4",
"4 3",
"2 5",
"1 3",
"3 9",
"3 3",
});
Assert.Equal("11", result);
}
}