Inorder Traversal of a BST
A binary search tree is a binary tree where the left child is smaller and the right child is greater than its parent.
Traverse a BST using Inorder to:
· visit the tree in sorted order
· validate whether a binary tree is a binary search tree
LeetCode
98. Validate Binary Search Tree
Python | Java