Day02 part 2

This commit is contained in:
2018-12-03 16:42:56 +01:00
parent 88d15bbd6d
commit 5974f6f7f2
3 changed files with 66 additions and 0 deletions

View File

@@ -22,5 +22,23 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("12", result);
}
[TestMethod()]
public void ResolveDay02_Part2__Test()
{
Day02 day02 = new Day02();
string result = day02.ResolveDay02_Part2(new string[] {
"abcde",
"fghij",
"klmno",
"pqrst",
"fguij",
"axcye",
"wvxyz",
});
Assert.AreEqual("fgij", result);
}
}
}