Exemplo n.º 1
0
        public void TestSolution2()
        {
            var day01 = new Solutions.Day01();

            int result = day01.GetSolution2("Day01/Input.txt");

            Assert.AreEqual(result, 292093004);
        }
Exemplo n.º 2
0
        public void TestExample1()
        {
            var day01 = new Solutions.Day01();

            int result = day01.GetSolution1("Day01/Example.txt");

            Assert.AreEqual(result, 514579);
        }
Exemplo n.º 3
0
        public void TestExample2()
        {
            var day01 = new Solutions.Day01();

            int result = day01.GetSolution2("Day01/Example.txt");

            Assert.AreEqual(result, 241861950);
        }