Medium
Given the root of a binary tree, return true if it is a valid binary search tree: every node in the left subtree is strictly less, every node in the right subtree is strictly greater, and both subtrees are themselves valid BSTs.
Input: root = [2,1,3] Output: true
Input: root = [5,1,4,null,null,3,6] Output: false