Class Solution
- java.lang.Object
-
- g0501_0600.s0566_reshape_the_matrix.Solution
-
public class Solution extends Object
566 - Reshape the Matrix.Easy
In MATLAB, there is a handy function called
reshapewhich can reshape anm x nmatrix into a new one with a different sizer x ckeeping its original data.You are given an
m x nmatrixmatand two integersrandcrepresenting the number of rows and the number of columns of the wanted reshaped matrix.The reshaped matrix should be filled with all the elements of the original matrix in the same row-traversing order as they were.
If the
reshapeoperation with given parameters is possible and legal, output the new reshaped matrix; Otherwise, output the original matrix.Example 1:

Input: mat = [[1,2],[3,4]], r = 1, c = 4
Output: 1,2,3,4
Example 2:

Input: mat = [[1,2],[3,4]], r = 2, c = 4
Output: [[1,2],[3,4]]
Constraints:
m == mat.lengthn == mat[i].length1 <= m, n <= 100-1000 <= mat[i][j] <= 10001 <= r, c <= 300
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int[][]matrixReshape(int[][] mat, int r, int c)
-