1490. Clone N-ary Tree
Previous1489. Find Critical and Pseudo-Critical Edges in Minimum Spanning TreeNext1491. Average Salary Excluding the Minimum and Maximum Salary
Last updated
https://leetcode.com/problems/clone-n-ary-tree
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.
Nary-Tree input serialization is represented in their level order traversal, each group of children is separated by the null value (See examples).
Example 1:
Example 2:
Constraints:
The depth of the n-ary tree is less than or equal to 1000
.
The total number of nodes is between [0, 104]
.
Follow up: Can your solution work for the graph problem?