Ejemplo n.º 1
0
        public void Part2_Exemple2()
        {
            var intcode = new long[] { 3, 52, 1001, 52, -5, 52, 3, 53, 1, 52, 56, 54, 1007, 54, 5, 55, 1005, 55, 26, 1001, 54, -5, 54, 1105, 1, 12, 1, 53, 54, 53, 1008, 54, 0, 55, 1001, 55, 1, 55, 2, 53, 55, 53, 4, 53, 1001, 56, -1, 56, 1005, 56, 6, 99, 0, 0, 0, 0, 10 };
            var phases  = new long[] { 9, 7, 8, 5, 6 };

            Assert.AreEqual(18216, Day7Main.RunSequenceWithFeedbackLoop(intcode, phases));
        }
Ejemplo n.º 2
0
        public void Part2_Exemple1()
        {
            var intcode = new long[] { 3, 26, 1001, 26, -4, 26, 3, 27, 1002, 27, 2, 27, 1, 27, 26, 27, 4, 27, 1001, 28, -1, 28, 1005, 28, 6, 99, 0, 0, 5 };
            var phases  = new long[] { 9, 8, 7, 6, 5 };

            Assert.AreEqual(139629729, Day7Main.RunSequenceWithFeedbackLoop(intcode, phases));
        }