We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b3310 commit d190725Copy full SHA for d190725
kth-smallest-element-in-a-bst/EGON.py
@@ -16,7 +16,7 @@ def kthSmallest(self, root: Optional[TreeNode], k: int) -> int:
16
17
"""
18
Runtime: 50 ms (Beats 25.03%)
19
- Analyze Complexity: O(n)
+ Analyze Complexity: O(n * log n), 순회에 n, heap push에 log n
20
Memory: 19.55 MB (Beats 15.91%)
21
22
def solve_1(self, root: Optional[TreeNode], k: int) -> int:
0 commit comments