-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path1490-clone-n-ary-tree.js
More file actions
38 lines (34 loc) · 964 Bytes
/
1490-clone-n-ary-tree.js
File metadata and controls
38 lines (34 loc) · 964 Bytes
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
32
33
34
35
36
37
38
/**
* 1490. Clone N-ary Tree
* https://leetcode.com/problems/clone-n-ary-tree/
* Difficulty: Medium
*
* Given a root of an N-ary tree, return a deep copy (clone) of the tree.
*
* Each node in the n-ary tree contains a val (int) and a list (List[Node]) of its children.
*
* class Node {
* public int val;
* public List<Node> children;
* }
*
* Nary-Tree input serialization is represented in their level order traversal, each group
* of children is separated by the null value (See examples).
*/
/**
* // Definition for a _Node.
* function _Node(val, children) {
* this.val = val === undefined ? 0 : val;
* this.children = children === undefined ? [] : children;
* };
*/
/**
* @param {_Node|null} node
* @return {_Node|null}
*/
var cloneTree = function(root) {
if (!root) return null;
const clonedNode = new _Node(root.val);
clonedNode.children = root.children.map(child => cloneTree(child));
return clonedNode;
};