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%2Fdn%2FSmbch%2FbtrJt3rN246%2FqG1eHAacf64ZPe9AeIN9pK%2Fimg.jpg)
[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..