public void TestExample1() { var solution = new Solutions.Day10(); int result = solution.GetJoltProduct("Day10/Example1.txt"); Assert.AreEqual(35, result); }
public void TestSolution1() { var solution = new Solutions.Day10(); int result = solution.GetJoltProduct("Day10/Input.txt"); Assert.AreEqual(2277, result); }