Skip to content

Commit bc09510

Browse files
committed
Create README - LeetHub
1 parent 9ff05b4 commit bc09510

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<h2>589. N-ary Tree Preorder Traversal</h2><h3>Easy</h3><hr><div><p>Given the <code>root</code> of an n-ary tree, return <em>the preorder traversal of its nodes' values</em>.</p>
2+
3+
<p>Nary-Tree input serialization is represented in their level order traversal. Each group of children is separated by the null value (See examples)</p>
4+
5+
<p>&nbsp;</p>
6+
<p><strong>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><strong>Input:</strong> root = [1,null,3,2,4,null,5,6]
11+
<strong>Output:</strong> [1,3,5,6,2,4]
12+
</pre>
13+
14+
<p><strong>Example 2:</strong></p>
15+
16+
<p><img alt="" src="https://assets.leetcode.com/uploads/2019/11/08/sample_4_964.png" style="width: 296px; height: 241px;"></p>
17+
18+
<pre><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]
19+
<strong>Output:</strong> [1,2,3,6,7,11,14,4,8,12,5,9,13,10]
20+
</pre>
21+
22+
<p>&nbsp;</p>
23+
<p><strong>Constraints:</strong></p>
24+
25+
<ul>
26+
<li>The number of nodes in the tree is in the range <code>[0, 10<sup>4</sup>]</code>.</li>
27+
<li><code>0 &lt;= Node.val &lt;= 10<sup>4</sup></code></li>
28+
<li>The height of the n-ary tree is less than or equal to <code>1000</code>.</li>
29+
</ul>
30+
31+
<p>&nbsp;</p>
32+
<p><strong>Follow up:</strong> Recursive solution is trivial, could you do it iteratively?</p>
33+
</div>

0 commit comments

Comments
 (0)