Skip to content

Commit d190725

Browse files
author
changmuk.im
committed
edit : time complexity comment
1 parent 72b3310 commit d190725

File tree

1 file changed

+1
-1
lines changed
  • kth-smallest-element-in-a-bst

1 file changed

+1
-1
lines changed

kth-smallest-element-in-a-bst/EGON.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def kthSmallest(self, root: Optional[TreeNode], k: int) -> int:
1616

1717
"""
1818
Runtime: 50 ms (Beats 25.03%)
19-
Analyze Complexity: O(n)
19+
Analyze Complexity: O(n * log n), 순회에 n, heap push에 log n
2020
Memory: 19.55 MB (Beats 15.91%)
2121
"""
2222
def solve_1(self, root: Optional[TreeNode], k: int) -> int:

0 commit comments

Comments
 (0)