Skip to content

Commit 1aadb6f

Browse files
authored
Update 0230-Kth-smallest-element-in-BST.md
1 parent c1f583f commit 1aadb6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dsa-solutions/lc-solutions/0200-0299/0230-Kth-smallest-element-in-BST.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
id: kth smallest element in binary search tree
2+
id: kth-smallest-element-in-binary-search-tree
33
title: Kth Smallest Element in Binary Search Tree
44
sidebar_label: 0230 Kth Smallest Element in Binary Search Tree
55
tags:
@@ -34,8 +34,8 @@ Output: 3
3434
### Constraints
3535

3636
- The number of nodes in the tree is n.
37-
- `1 <= k <= n <= 10^4`
38-
- `0 <= Node.val <= 10^4`
37+
- $1 \leq k \leq n \leq 10^4$
38+
- $0 \leq \text{Node.val} \leq 10^4$
3939

4040
### Approach
4141

0 commit comments

Comments
 (0)