mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-10 20:40:39 +08:00
update 0098.验证二叉搜索树: 修改文本错误
This commit is contained in:
@ -437,8 +437,6 @@ class Solution:
|
|||||||
## Go
|
## Go
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
import "math"
|
|
||||||
|
|
||||||
func isValidBST(root *TreeNode) bool {
|
func isValidBST(root *TreeNode) bool {
|
||||||
// 二叉搜索树也可以是空树
|
// 二叉搜索树也可以是空树
|
||||||
if root == nil {
|
if root == nil {
|
||||||
|
Reference in New Issue
Block a user