98. Validate Binary Search Tree
![[LeetCode] 98. Validate Binary Search Tree](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FSmbch%2FbtrJt3rN246%2FAAAAAAAAAAAAAAAAAAAAANn2A74npA173JF79chbSgHPDMov1B9c6yPcfUzm--NU%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DxOwmUIMSFg4AfngnYNCsqqmYmnc%253D)
[LeetCode] 98. Validate Binary Search Tree
98. Validate Binary Search Tree Medium Given the root of a binary tree, determine if it is a valid binary search tree (BST). A valid BST is defined as follows: The left subtree of a node contains only nodes with keys less than the node's key. The right subtree of a node contains only nodes with keys greater than the node's key. Both the left and right subtrees must also be binary search trees. E..