예제 #1
0
파일: Program.cs 프로젝트: stames/aoc
        static void Main(string[] args)
        {
            var day = new Day24();

            //day.Test();

            long part1 = day.Part1();

            Console.WriteLine("Part 1: {0}", part1);

            long part2 = day.Part2();

            Console.WriteLine("Part 2: {0}", part2);

            Console.WriteLine("done");
        }
예제 #2
0
        public void TestPart1()
        {
            var actual = Day24.Part1(_map0);

            Assert.AreEqual(2129920, (int)actual);
        }