Files
Leetcode/566. Reshape the Matrix/Program.cs
Electrominch e711e64e07 Clear
2022-10-07 00:48:48 +03:00

12 lines
349 B
C#

namespace _566._Reshape_the_Matrix
{
internal class Program
{
static void Main(string[] args)
{
var res = new Solution().MatrixReshape(new int[][] { new int[] { 1, 2 }, new int[] { 4, 5 } }, 2, 4);
foreach (var row in res)
Console.WriteLine(String.Join(" ", row));
}
}
}