Day08 part 2

This commit is contained in:
2018-12-11 21:13:39 +01:00
parent e00c496a95
commit 8e0f46bd7a
2 changed files with 54 additions and 2 deletions

View File

@@ -14,5 +14,15 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("138", result);
}
[TestMethod()]
public void ResolvePart2__Test()
{
Day08 day = new Day08();
string result = day.ResolvePart2(new string[] { "2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2", });
Assert.AreEqual("66", result);
}
}
}