-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path2625-flatten-deeply-nested-array.js
More file actions
31 lines (30 loc) · 1.01 KB
/
2625-flatten-deeply-nested-array.js
File metadata and controls
31 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* 2625. Flatten Deeply Nested Array
* https://leetcode.com/problems/flatten-deeply-nested-array/
* Difficulty: Medium
*
* Given a multi-dimensional array arr and a depth n, return a flattened version of that array.
*
* A multi-dimensional array is a recursive data structure that contains integers or other
* multi-dimensional arrays.
*
* A flattened array is a version of that array with some or all of the sub-arrays removed and
* replaced with the actual elements in that sub-array. This flattening operation should only
* be done if the current depth of nesting is less than n. The depth of the elements in the
* first array are considered to be 0.
*
* Please solve it without the built-in Array.flat method.
*/
/**
* @param {Array} arr
* @param {number} depth
* @return {Array}
*/
var flat = function(arr, n) {
if (n === 0) return arr;
const result = [];
for (let i = 0; i < arr.length; i++) {
result.push(...(Array.isArray(arr[i]) ? flat(arr[i], n - 1) : [arr[i]]));
}
return result;
};