博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode 566. 重塑矩阵(Reshape the Matrix)
阅读量:5243 次
发布时间:2019-06-14

本文共 500 字,大约阅读时间需要 1 分钟。

566. 重塑矩阵

566. Reshape the Matrix

题目描述

LeetCode566. Reshape the Matrix简单

Java 实现

class Solution {    public int[][] matrixReshape(int[][] nums, int r, int c) {        int row = nums.length, col = nums[0].length;        if (row * col != r * c) {            return nums;        }        int[][] res = new int[r][c];        for (int i = 0; i < r * c; i++) {            res[i / c][i % c] = nums[i / col][i % col];        }        return res;    }}

参考资料

转载于:https://www.cnblogs.com/hglibin/p/10990824.html

你可能感兴趣的文章
网站sqlserver提权操作
查看>>
PHP变量作用域以及地址引用问题
查看>>
实验四
查看>>
Elastic Stack-Elasticsearch使用介绍(三)
查看>>
MacOS copy图标shell脚本
查看>>
第八章 方法
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
堆 栈
查看>>
Kth Smallest Element in Unsorted Array
查看>>
vue项目中使用百度统计
查看>>
android:scaleType属性
查看>>
SuperEPC
查看>>
RBAC用户角色权限设计方案
查看>>
thymeleaf
查看>>
CentOS7安装iptables防火墙
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>