From e406d4121d2756b9c668d5c3547d6a0246f926dd Mon Sep 17 00:00:00 2001 From: Alexey Nikitchenko Date: Tue, 16 Jul 2024 18:25:08 +0300 Subject: [PATCH] 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 --- .../content/105-sorting-algorithms/100-bubble-sort.md | 2 +- .../content/105-sorting-algorithms/101-merge-sort.md | 2 +- .../content/105-sorting-algorithms/103-quick-sort.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/100-bubble-sort.md b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/100-bubble-sort.md index 565ed3742..d411cd787 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/100-bubble-sort.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/100-bubble-sort.md @@ -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) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/101-merge-sort.md b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/101-merge-sort.md index ce7345df6..bc9484cf3 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/101-merge-sort.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/101-merge-sort.md @@ -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/) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/103-quick-sort.md b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/103-quick-sort.md index fefd07541..b53be25d8 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/103-quick-sort.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/103-quick-sort.md @@ -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/)