File tree 1 file changed +2
-9
lines changed
1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -65,19 +65,12 @@ Success is like pregnancy, Everybody congratulates you but nobody knows how many
65
65
| 20| [ Valid Parentheses] ( https://leetcode.com/problems/valid-parentheses/#/description ) | [ Python] ( ./stack_queue/isValid.py ) | _ O(n)_ | _ O(n)_ | Easy | ||
66
66
| 346| [ Moving Average from Data Stream] ( https://leetcode.com/problems/moving-average-from-data-stream/#/description ) | [ Python] ( ./stack_queue/movingAverage.py ) | _ O(1)_ | _ O(n)_ | Easy | ||
67
67
68
- ## 4/22 Tasks (Tree Easy)
69
- | # | Title | Solution | Time | Space | Difficulty | Tag| Note|
70
- | -----| -------| -------- | ---- | ------| ------------| ---| -----|
71
- | 110| [ Balanced Binary Tree] ( https://leetcode.com/problems/balanced-binary-tree/#/description ) | [ Python [ Yu]] ( ./tree/Yu/110_isBalanced.py ) | _ O(N)_ | _ O(h)_ | Easy | ||
72
- | 112| [ Path Sum] ( https://leetcode.com/problems/path-sum/#/description ) | [ Python [ Yu]] ( ./tree/Yu/112_hasPathSum.py ) | _ O(N)_ | _ O(h)_ | Easy | | [ 中文讲解] ( https://www.youtube.com/watch?v=LgtcGjIuE18&feature=youtu.be ) |
73
-
74
-
75
-
76
-
77
68
78
69
## Tree Easy
79
70
| # | Title | Solution | Time | Space | Difficulty | Tag| Note|
80
71
| -----| -------| -------- | ---- | ------| ------------| ---| -----|
72
+ | 110| [ Balanced Binary Tree] ( https://leetcode.com/problems/balanced-binary-tree/#/description ) | [ Python [ Yu]] ( ./tree/Yu/110_isBalanced.py ) | _ O(N)_ | _ O(h)_ | Easy | ||
73
+ | 112| [ Path Sum] ( https://leetcode.com/problems/path-sum/#/description ) | [ Python [ Yu]] ( ./tree/Yu/112_hasPathSum.py ) | _ O(N)_ | _ O(h)_ | Easy | | [ 中文讲解] ( https://www.youtube.com/watch?v=LgtcGjIuE18&feature=youtu.be ) |
81
74
| 100| [ Same Tree] ( https://leetcode.com/problems/same-tree/ ) | [ Python [ Yu]] ( ./tree/Yu/100_isSameTree.py ) | _ O(N)_ | _ O(1)_ | Easy |||
82
75
| 101| [ Symmetric Tree] ( https://leetcode.com/problems/symmetric-tree/#/description ) | [ Python [ Yu]] ( ./tree/Yu/101_symmetricTree.py ) | _ O(N)_ | _ O(1)_ | Easy || [ 公瑾讲解] ( https://youtu.be/3Gl4F29LVpQ ) |
83
76
| 104| [ Maximum Depth of Binary Tree] ( https://leetcode.com/problems/maximum-depth-of-binary-tree/ ) | [ Python] ( ./tree/Yu/104_maxDepth.py ) | _ O(N)_ | _ O(1)_ | Easy | ||
You can’t perform that action at this time.
0 commit comments