From bd062a33b6e4c6b647e55f86f21ebd2eba48429a Mon Sep 17 00:00:00 2001 From: SaisakthiM Date: Mon, 5 May 2025 12:08:03 +0530 Subject: [PATCH] Update README.md the words was congested before I added a space I Added a space so it looks nice --- Binary_Search_Tree/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Binary_Search_Tree/README.md b/Binary_Search_Tree/README.md index 46a7bbf6..cdbb72da 100644 --- a/Binary_Search_Tree/README.md +++ b/Binary_Search_Tree/README.md @@ -2,6 +2,7 @@ # Binary Search Tree - Differ from a regular Binary Tree because of one key property: Nodes must be arranged in order + - the node's left subtree must have values less than the node - the node's right subtree must have values greater than the node - this is going based on that every value in the BST must be unique