update 0098.验证二叉搜索树: 修改文本错误

This commit is contained in:
Yuhao Ju 2022-12-04 13:52:36 +08:00 committed by GitHub
parent a85036e811
commit d32e8f54c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -437,8 +437,6 @@ class Solution:
## Go
```Go
import "math"
func isValidBST(root *TreeNode) bool {
// 二叉搜索树也可以是空树
if root == nil {