Skip to content

Commit cb69850

Browse files
committed
feat: kth-smallest-element-in-a-bst
1 parent a9c3651 commit cb69850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kth-smallest-element-in-a-bst/minji-go.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <li>Topics: Tree, Depth-First Search, Binary Search Tree, Binary Tree</li>
55
* <li>Time Complexity: O(N), Runtime 0ms </li>
66
* <li>Space Complexity: O(H), Memory 44.5MB</li>
7-
* <li>Note: if the BST is modified often,
7+
* <li>Note: if the BST is modified often,
88
*/
99
class Solution {
1010
public int kthSmallest(TreeNode root, int k) {

0 commit comments

Comments
 (0)