Skip to content

Commit 9efbdaf

Browse files
committed
chore: fixed
1 parent 49febaf commit 9efbdaf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161
- [Time Memory Trade-Off technique](#time-memory-trade-off-technique)
6262
- [Coding Interview Question and Answers](#coding-interview-question-and-answers)
6363
- [Graphs](#graphs)
64+
- [Depth First Search Question](#depth-first-search-question)
65+
- [Depth First Search Answer](#depth-first-search-answer)
6466
- [Trees and Graphs](#trees-and-graphs)
6567
- [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)
6668
- [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)
@@ -660,13 +662,15 @@ Trade off or invest some memory to improve run time complexity. Suppose use Has-
660662

661663
### Graphs
662664

665+
#### Depth First Search Question
663666

664667
<p class="codepen" data-height="265" data-theme-id="dark" data-default-tab="js,result" data-user="roopkt" data-slug-hash="MWpxezz" 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="Graph: DFS Question (easy)">
665668
<span>See the Pen <a href="https://codepen.io/roopkt/pen/MWpxezz">
666669
Graph: DFS Question (easy)</a> by Rupesh Tiwari (<a href="https://codepen.io/roopkt">@roopkt</a>)
667670
on <a href="https://codepen.io">CodePen</a>.</span>
668671
</p>
669672

673+
#### Depth First Search Answer
670674

671675
<p class="codepen" data-height="265" data-theme-id="dark" data-default-tab="js,result" data-user="roopkt" data-slug-hash="NWpJrjg" 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="Graph: DFS Answer (easy)">
672676
<span>See the Pen <a href="https://codepen.io/roopkt/pen/NWpJrjg">

0 commit comments

Comments
 (0)