deno.land / x / masx200_leetcode_test@10.6.5 / clone-n-ary-tree / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
import { Node } from "../n-ary-tree-level-order-traversal/Node.ts";
export default function cloneTree(root: Node | null): Node | null { if (!root) return root; const r = new Node(root.val); for (const c of root.children) { const child = cloneTree(c); child && r.children.push(child); } return r;}
masx200_leetcode_test

Version Info

Tagged at
a year ago