Exemple #1
0
        public void ProgramShoulFindNoun_3500_shouldReturn910()
        {
            var input = new int[] { 1, 0, 0, 3, 2, 3, 11, 0, 99, 30, 40, 50 };

            int output = intCode.FindNounVerb(input, 3500);

            Assert.AreEqual(100 * 9 + 10, output);
        }