Ejemplo n.º 1
0
        /// <summary>
        /// Run the Multiply Integer Array Problem
        /// </summary>
        /// <param name="helper"></param>
        public void RunMultiplyIntArray(HelperFunctions helper)
        {
            int[] array = new int[] { 3, 5, 6, 7, 8 };

            System.Diagnostics.Debug.WriteLine("Input: " + helper.ArrayToString(array) + "\nOutput: " + helper.ArrayToString(GetProductsOfAllIntsExceptAtIndex(array)));
        }