From 1237103b486ea02e13769904ba04e69ab52fa3ce Mon Sep 17 00:00:00 2001 From: ShusenTang Date: Mon, 23 Sep 2019 22:01:32 +0800 Subject: [PATCH] fix typo --- solutions/230. Kth Smallest Element in a BST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/230. Kth Smallest Element in a BST.md b/solutions/230. Kth Smallest Element in a BST.md index 3dde8ae..835d327 100644 --- a/solutions/230. Kth Smallest Element in a BST.md +++ b/solutions/230. Kth Smallest Element in a BST.md @@ -1,4 +1,4 @@ -# [30. Kth Smallest Element in a BST](https://leetcode.com/problems/kth-smallest-element-in-a-bst/) +# [230. Kth Smallest Element in a BST](https://leetcode.com/problems/kth-smallest-element-in-a-bst/) # 思路 题意要求返回一棵二叉搜索树中第k大的元素。