Пожалуйста, помогите с вложенным массивом и сглаживанием, которое выведет консоль 123456 C#, но проблема в том, что она не выводит корректно, пожалуйста, помогите
Please help with nested array and flatten that will output 123456 C# console but the problem is it doesn't output correct out please help
Что я уже пробовал:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlattenArrays { class Program { /// <summary> /// Write a program that will take a nested array and flatten it /// </summary> /// <param name="args"></param> static void Main(string[] args) { var nestedArray = new[] { new object[] { 1, 2, new[] { 3 }, 5, 6 } }; var flattenedArray = Flatten(nestedArray); foreach (var item in flattenedArray) { Console.WriteLine(item); } Console.ReadKey(); /* Expected output: 1 2 3 4 5 6 */ } private static object[] Flatten(object[][] nestedArray) { throw new NotImplementedException(); } } }