Skip to content

Commit 9146457

Browse files
committed
chore: adding 1 question
1 parent b098a37 commit 9146457

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
- [ADT](#adt)
6161
- [Time Memory Trade-Off technique](#time-memory-trade-off-technique)
6262
- [Coding Interview Question and Answers](#coding-interview-question-and-answers)
63+
- [Graphs](#graphs)
6364
- [Trees and Graphs](#trees-and-graphs)
6465
- [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)
6566
- [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)
@@ -657,6 +658,22 @@ Trade off or invest some memory to improve run time complexity. Suppose use Has-
657658

658659
## Coding Interview Question and Answers
659660

661+
### Graphs
662+
663+
664+
<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)">
665+
<span>See the Pen <a href="https://codepen.io/roopkt/pen/MWpxezz">
666+
Graph: DFS Question (easy)</a> by Rupesh Tiwari (<a href="https://codepen.io/roopkt">@roopkt</a>)
667+
on <a href="https://codepen.io">CodePen</a>.</span>
668+
</p>
669+
670+
671+
<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)">
672+
<span>See the Pen <a href="https://codepen.io/roopkt/pen/NWpJrjg">
673+
Graph: DFS Answer (easy)</a> by Rupesh Tiwari (<a href="https://codepen.io/roopkt">@roopkt</a>)
674+
on <a href="https://codepen.io">CodePen</a>.</span>
675+
</p>
676+
660677
### Trees and Graphs
661678

662679
#### Route Between Nodes: Given a directed graph, design an algorithm to find out whether there is a route between two nodes.

another.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

coding-interview.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: default
3+
---
4+
5+
## Graph
6+
Difficulty: Easy
7+
Depth-first Search

0 commit comments

Comments
 (0)