2022. Convert 1D Array Into 2D Array
You are given a 0-indexed 1-dimensional (1D) integer array
original
, and two integers,m
andn
. You are tasked with creating a 2-dimensional (2D) array withm
rows andn
columns using all the elements fromoriginal
.The elements from indices
0
ton - 1
(inclusive) oforiginal
should form the first row of the constructed 2D array, the elements from indicesn
to2 * n - 1
(inclusive) should form the second row of the constructed 2D array, and so on.Return an
m x n
2D array constructed according to the above procedure, or an empty 2D array if it is impossible.
1 | class Solution { |