Skip to content

Commit 6cd88d9

Browse files
committed
Create README - LeetHub
1 parent 3b74d61 commit 6cd88d9

File tree

1 file changed

+30
-0
lines changed
  • 0429-n-ary-tree-level-order-traversal

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<h2><a href="https://leetcode.com/problems/n-ary-tree-level-order-traversal">429. N-ary Tree Level Order Traversal</a></h2><h3>Medium</h3><hr><p>Given an n-ary tree, return the <em>level order</em> traversal of its nodes&#39; values.</p>
2+
3+
<p><em>Nary-Tree input serialization is represented in their level order traversal, each group of children is separated by the null value (See examples).</em></p>
4+
5+
<p>&nbsp;</p>
6+
<p><strong class="example">Example 1:</strong></p>
7+
8+
<p><img src="https://assets.leetcode.com/uploads/2018/10/12/narytreeexample.png" style="width: 100%; max-width: 300px;" /></p>
9+
10+
<pre>
11+
<strong>Input:</strong> root = [1,null,3,2,4,null,5,6]
12+
<strong>Output:</strong> [[1],[3,2,4],[5,6]]
13+
</pre>
14+
15+
<p><strong class="example">Example 2:</strong></p>
16+
17+
<p><img alt="" src="https://assets.leetcode.com/uploads/2019/11/08/sample_4_964.png" style="width: 296px; height: 241px;" /></p>
18+
19+
<pre>
20+
<strong>Input:</strong> root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
21+
<strong>Output:</strong> [[1],[2,3,4,5],[6,7,8,9,10],[11,12,13],[14]]
22+
</pre>
23+
24+
<p>&nbsp;</p>
25+
<p><strong>Constraints:</strong></p>
26+
27+
<ul>
28+
<li>The height of the n-ary tree is less than or equal to <code>1000</code></li>
29+
<li>The total number of nodes is between <code>[0, 10<sup>4</sup>]</code></li>
30+
</ul>

0 commit comments

Comments
 (0)