Leetcode566. Reshape the Matrix
Posted vector11248
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode566. Reshape the Matrix相关的知识,希望对你有一定的参考价值。
public int[][] func(int[][] nums,int r,int c){ int m=nums.length; int k=0; int n=nums[0].length; if(r*c!=m*n){ return nums; } int[][] res = new int[r][c]; for(int i=0;i<r;i++){ for(int j=0;j<c;j++,k++){ res[i][j]=nums[k/n][k%n]; } } return res; }
以上是关于Leetcode566. Reshape the Matrix的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode - 566. Reshape the Matrix
LeetCode 566. Reshape the Matrix (重塑矩阵)
[LeetCode] 566. Reshape the Matrix_Easy
566. Reshape the Matrix - LeetCode