LC: 1490. Clone N ary Tree
https://leetcode.com/problems/clone-n-ary-tree/
class Node {
public int val;
public List<Node> children;
}

PreviousLC: 1474. Delete N Nodes After M Nodes of a Linked ListNextLC: 1506. Find Root of N Ary Tree
Last updated