LeetCode-Problems-Solution-Book
LeetCode-Problems-Solution-Book copied to clipboard
98. Validate Binary Search Tree
Given a binary tree root, return whether it's a binary search tree. A binary tree node is a binary search tree if : ------(C++)
- All nodes on its left subtree are smaller than node.val
- All nodes on its right subtree are bigger than node.val
- All nodes hold the these properties.
Constraint: n ≤ 100,000 where n is the number of nodes in root
Please assign me this problem.
@leninmeher @arihantthriwe Which Language guys?
C++
@leninmeher Assigned in C++
C
Should i create a new branch...??
@arihantthriwe I'll assign this to you in C, but now this repo has been excluded from Hacktoberfest 2021, please read the pinned issue of this repo to know more :')
@arihantthriwe I'll assign this to you in C, but now this repo has been excluded from Hacktoberfest 2021, please read the pinned issue of this repo to know more :')