leetcode—98. 验证二叉搜索树

也不是我做出来的,,

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
上一篇:leetcode-----98. 验证二叉搜索树


下一篇:在固定定位的元素使用过渡背景色问题