Trees: Is This a Binary Search Tree?

  • + 0 comments

    It's a Binary Search Tree which doesn't allow repeated values, because every value in the left must be lower than the current root and every value in the right must be higher.

    So it will return False.