We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3dc886 commit ba727edCopy full SHA for ba727ed
34. 二叉树的层序遍历.md
@@ -2,6 +2,11 @@
2
3

4
5
+```
6
+输入:root = [3,9,20,null,null,15,7]
7
+输出:[[3],[9,20],[15,7]]
8
9
+
10
```
11
class Solution:
12
def levelOrder(self, root: Optional[TreeNode]) -> List[List[int]]:
0 commit comments