public void TestSolution2() { var solution = new Solutions.Day08(); long result = solution.GetSolution2("Day08/Input.txt"); Assert.AreEqual(1270, result); }
public void TestExample1() { var solution = new Solutions.Day08(); int result = solution.GetSolution1("Day08/Example.txt"); Assert.AreEqual(5, result); }
public void TestSolution1() { var solution = new Solutions.Day08(); int result = solution.GetSolution1("Day08/Input.txt"); Assert.AreEqual(1475, result); }