Skip to content

Commit 216c881

Browse files
committed
chore: fix question
1 parent acb1dc8 commit 216c881

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
- [Get the Average value at each level of the tree](#get-the-average-value-at-each-level-of-the-tree)
6262
- [ADT](#adt)
6363
- [Time Memory Trade-Off technique](#time-memory-trade-off-technique)
64-
- [Interview Coding Questions](#interview-coding-questions)
64+
- [Coding Interview Question and Answers](#coding-interview-question-and-answers)
6565
- [Trees and Graphs](#trees-and-graphs)
6666
- [Route Between Nodes: Given a directed graph, design an algorithm to find out whether there is a route between two nodes.](#route-between-nodes-given-a-directed-graph-design-an-algorithm-to-find-out-whether-there-is-a-route-between-two-nodes)
6767
- [Minimal Tree: Given a sorted increasing order array with unique integer elements, write an algorithm to create a binary search tree with minimal height](#minimal-tree-given-a-sorted-increasing-order-array-with-unique-integer-elements-write-an-algorithm-to-create-a-binary-search-tree-with-minimal-height)
@@ -655,7 +655,7 @@ abstract data type (ADT) - ADT is defined as a user point of view of a data type
655655

656656
Trade off or invest some memory to improve run time complexity. Suppose use Has-table, set etc. to insert some of the calculations that you want to not repeat.
657657

658-
## Interview Coding Questions
658+
## Coding Interview Question and Answers
659659

660660
### Trees and Graphs
661661

@@ -737,10 +737,12 @@ Delete 15 from BST
737737
- [Answer](https://codepen.io/roopkt/pen/bGqOxyN)
738738

739739

740-
<iframe height="265" style="width: 100%;" scrolling="no" title="Find Inorder Successor in BST Question" src="https://codepen.io/roopkt/embed/preview/YzZdMxa?height=265&theme-id=dark&default-tab=js,result" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true">
741-
See the Pen <a href='https://codepen.io/roopkt/pen/YzZdMxa'>Find In-order Successor in BST Question</a> by Rupesh Tiwari
742-
(<a href='https://codepen.io/roopkt'>@roopkt</a>) on <a href='https://codepen.io'>CodePen</a>.
743-
</iframe>
740+
<p class="codepen" data-height="265" data-theme-id="dark" data-default-tab="js,result" data-user="roopkt" data-slug-hash="bGqOxyN" style="height: 265px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;" data-pen-title="Find In-order Successor in BST Answer">
741+
<span>See the Pen <a href="https://codepen.io/roopkt/pen/bGqOxyN">
742+
Find In-order Successor in BST Answer</a> by Rupesh Tiwari (<a href="https://codepen.io/roopkt">@roopkt</a>)
743+
on <a href="https://codepen.io">CodePen</a>.</span>
744+
</p>
745+
<script async src="https://cpwebassets.codepen.io/assets/embed/ei.js"></script>
744746

745747
### Recursion Interview Questions
746748

0 commit comments

Comments
 (0)