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