1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-25 18:20:46 +02:00

Fix grammar in sorting algorithms articles (#6158)

* Fix grammar in 100-bubble-sort.md

* Fix grammar in 101-merge-sort.md

* Fix grammar in 103-quick-sort.md
This commit is contained in:
Alexey Nikitchenko
2024-07-16 18:25:08 +03:00
committed by GitHub
parent 918eb1dc9c
commit e406d4121d
3 changed files with 3 additions and 3 deletions

View File

@@ -5,6 +5,6 @@ Bubble Sort is a simple sorting algorithm that works by repeatedly swapping the
Learn more from the following resources:
- [@article@Bubble Sort](https://www.w3schools.com/dsa/dsa_algo_bubblesort.php)
- [@article@Bubble Sort Visulize](https://www.hackerearth.com/practice/algorithms/sorting/bubble-sort/visualize/)
- [@article@Bubble Sort Visualize](https://www.hackerearth.com/practice/algorithms/sorting/bubble-sort/visualize/)
- [@video@Bubble Sort](https://www.youtube.com/watch?v=Jdtq5uKz-w4)
- [@video@Bubble Sort](https://www.youtube.com/watch?v=p__ETf2CKY4)

View File

@@ -5,4 +5,4 @@ __Merge sort__ is a type of sorting algorithm that follows the divide-and-conque
Learn more from the following resources:
- [@video@Merge Sort](https://www.youtube.com/watch?v=4VqmGXwpLqc)
- [@article@Merge Sort Visulize](https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/visualize/)
- [@article@Merge Sort Visualize](https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/visualize/)

View File

@@ -7,4 +7,4 @@ Learn more from the following resources:
- [@video@A Complete Overview of Quicksort](https://www.youtube.com/watch?v=0SkOjNaO1XY)
- [@video@QuickSort](https://www.youtube.com/watch?v=7h1s2SojIRw)
- [@video@QuickSort Analysis](https://www.youtube.com/watch?v=-qOVVRIZzao)
- [@article@Quick Sort Visulize](https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/visualize/)
- [@article@Quick Sort Visualize](https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/visualize/)