umdreamer / leetcodeproblems

Solutions for LeetCode OJ
3 stars 9 forks source link

2023.05.26 Problem: 566. Reshape the Matrix #23

Closed umdreamer closed 1 year ago

umdreamer commented 1 year ago
  1. Reshape the Matrix Problem Link

In MATLAB, there is a handy function called reshape which can reshape an m x n matrix into a new one with a different size r x c keeping its original data.

You are given an m x n matrix mat and two integers r and c representing 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 reshape operation with given parameters is possible and legal, output the new reshaped matrix; Otherwise, output the original matrix.

Example 1: image

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

Example 2: image

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

Constraints:

tangyexi commented 1 year ago
屏幕截图 2023-05-26 221229
liu-si-han commented 1 year ago
image
huangyumei1 commented 1 year ago

QQ图片20230526221806

htywan commented 1 year ago

111

yeyuxq commented 1 year ago

image

686xiaozhang commented 1 year ago

QQ截图20230526233619

naqianqpg commented 1 year ago

Z{W 9P)_8D PE7)7D0 (P4T

mafanjia commented 1 year ago

截屏14

Lggg1234 commented 1 year ago

屏幕截图 2023-05-27 115858

123lrb commented 1 year ago

TK%K5 `@{9PFWZ6F)OO2LRV

PinkyLame commented 1 year ago

image

xkqwww commented 1 year ago

无标题

sjh397 commented 1 year ago

image

wangshiqi7 commented 1 year ago
截屏2023-05-27 14 10 23
zyhzxy99 commented 1 year ago

O 8`S QNZGL NWFVY@ GKSQ

syr2212061031 commented 1 year ago

image

zhjingyan commented 1 year ago

image

foxbou commented 1 year ago
image
promisewith7 commented 1 year ago

image

liuhuanyu6 commented 1 year ago

image

FXL1006 commented 1 year ago
image
daowuwu commented 1 year ago

IHD68B5_%R%{Z6T$1))R6Z6

12baoxingyu-6 commented 1 year ago
image
24zlx commented 1 year ago

联想截图_20230527165629

bedauern commented 1 year ago
Snipaste_2023-05-27_17-14-37
gusuning commented 1 year ago
屏幕截图 2023-05-27 172708
ZWJ2212061008 commented 1 year ago

image

1125766961 commented 1 year ago

image

xiaolu2002 commented 1 year ago

image

zxm-1235 commented 1 year ago

image

shylieisme commented 1 year ago

J7S~ WD@AS01Z JS_AM~8)M

zangfushuo commented 1 year ago
截屏2023-05-27 22 43 03
cuixiao02 commented 1 year ago

IMG_2111