[Solved] Browse a matrix
Here the solution I found : private static IEnumerable<int> ComputeMatrix(int[,] matrix) { // check args if (matrix.Rank != 2) { throw new ArgumentException(“matrix should have a rank of 2”); } if (matrix.GetUpperBound(0) != matrix.GetUpperBound(1)) { throw new ArgumentException(“matrix should have the same size”);} // indice treated List<int> treatedIndex = new List<int>(); for (int i = … Read more