Skip to content

Commit 02a6631

Browse files
committed
chore: spelling
1 parent 639cbdf commit 02a6631

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@
3737
- [Depth-First Search (DFS)](#depth-first-search-dfs)
3838
- [Breadth-First Search (BFS)](#breadth-first-search-bfs)
3939
- [DFS Vs BFS](#dfs-vs-bfs)
40-
- [Algorithms](#algorithms-1)
40+
- [Algorithms Q&A](#algorithms-qa)
4141
- [Merge Sort](#merge-sort)
42+
- [Merge Sort Implementation](#merge-sort-implementation)
4243
- [Find Median Values (With Merge Sort Algorithm)](#find-median-values-with-merge-sort-algorithm)
4344
- [Quick Sort](#quick-sort)
4445
- [BFS (Breath First Search)](#bfs-breath-first-search)
@@ -352,7 +353,7 @@ Example: Suppose you have given a tree structure and asked to calculate the aver
352353
| Where to use: if you can find at root or leaf, find connected components. | Where to use: Find shortest path,find connected components. When you think you have less data go for it. |
353354
| Time Complexity: O(V+E) | Time Complexity: O(V+E) |
354355

355-
## Algorithms
356+
## Algorithms Q&A
356357

357358
### Merge Sort
358359

@@ -362,14 +363,14 @@ https://www.youtube.com/watch?v=UxnyImctVzg
362363

363364
![](https://i.imgur.com/YpQSB5J.png)
364365

365-
**Merge Sort Implementation Visualization**
366+
#### Merge Sort Implementation
366367

367-
[![Merge Sort Algorithm Simulator](https://img.youtube.com/vi/UxnyImctVzg/0.jpg)](https://www.youtube.com/watch?v=UxnyImctVzg 'Merge Sort Algorithm Simulator')
368+
Merge Sort Implementation Visualization:
368369

369-
**Implementation of Merge Sort**
370+
[![Merge Sort Algorithm Simulator](https://img.youtube.com/vi/UxnyImctVzg/0.jpg)](https://www.youtube.com/watch?v=UxnyImctVzg 'Merge Sort Algorithm Simulator')
370371

371-
- [Merge Sort Implementation Question](https://codepen.io/roopkt/pen/ExWRRgP?editors=0010)
372-
- [Merge Sort Implementation Answer](https://codepen.io/roopkt/pen/zYZaaZr?editors=0010)
372+
- [Merge Sort Implementation Exercise](https://codepen.io/roopkt/pen/ExWRRgP?editors=0010)
373+
- [Merge Sort Implementation Answer](https://codepen.io/roopkt/pen/zYZaaZr?editors=0010)
373374

374375
#### Find Median Values (With Merge Sort Algorithm)
375376

@@ -385,7 +386,7 @@ So in order to find median we can use the stich algorithm since arrays are alrea
385386

386387
![](https://i.imgur.com/LudZhvH.png)
387388

388-
- [Implement Quick Sort Question](https://codepen.io/roopkt/pen/NWpzMRv?editors=0010)
389+
- [Implement Quick Sort Exercise](https://codepen.io/roopkt/pen/NWpzMRv?editors=0010)
389390
- [Implement Quick Sort Answer](https://codepen.io/roopkt/pen/eYvKrvP?editors=0010)
390391

391392
### BFS (Breath First Search)

0 commit comments

Comments
 (0)