也不是我做出来的,,
class Solution(object): def isValidBST(self, root): """ :type root: TreeNode :rtype: bool """ res=[] def helper(root): if not root: return True helper(root.left) res.append(root.val) helper(root.right) helper(root) return res==sorted(res) and len(set(res))==len(res)执行用时 :36 ms, 在所有 python 提交中击败了85.49%的用户 内存消耗 :17.7 MB, 在所有 python 提交中击败了5.07%的用户 ——2019.11.7