Skip to content

Commit 143b608

Browse files
committed
chore: adding blog
1 parent d6a78f2 commit 143b608

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,11 @@ Below are the types of LinkedList:
245245

246246
![ ](https://i.imgur.com/byjRY7x.png)
247247

248+
**Implement a LinkedList:**
249+
250+
- [Question](https://codepen.io/roopkt/pen/VwpqvMP?editors=0010)
251+
- [Answer](https://codepen.io/roopkt/pen/eYvbpEw?editors=0010)
252+
248253
#### Insert at head
249254

250255
The newly created node will become head of the linked list. · Size of the list is increased by one.
@@ -647,12 +652,9 @@ Trade off or invest some memory to improve run time complexity. Suppose use Has-
647652

648653
[Answer for Creating Minimal Tree Interview Question](src/interview-questions/graph/2-minimal-bs-tree.mjs)
649654

655+
#### Check if a given binary tree is BST ( Binary Search Tree )
650656

651-
#### Check if a given binary tree is BST ( Binary Search Tree )
652-
653-
**Binary Search Tree (BST)**: is a binary tree in which for each node value of all the nodes in the left subtree is lesser or equal to the root node. And the values of all the nodes in the right subtree is greater than the root node.
654-
655-
657+
**Binary Search Tree (BST)**: is a binary tree in which for each node value of all the nodes in the left subtree is lesser or equal to the root node. And the values of all the nodes in the right subtree is greater than the root node.
656658

657659
### Recursion Interview Questions
658660

0 commit comments

Comments
 (0)