Hitsuki9
Results
1
comments of
Hitsuki9
```js // 递归 var isValidBST = function(root) { function helper(node, min, max) { if (node === null) return true; if (node.val >= max || node.val