DIY: Validate the Binary Search Tree
Explore how to validate a binary search tree by implementing the InorderBST function in Kotlin. Understand how to determine if a given integer array is the inorder traversal of a BST. This lesson builds core skills for solving tree-related coding interview problems.
We'll cover the following...
We'll cover the following...
Problem statement
For this challenge, you are given an integer array. You have to implement the InorderBST() function to validate whether the given integer array represents the in-order traversal of a valid binary search tree
Constraints
- Nodes count of the binary search tree in the range [1,