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
pull/6160/head
Alexey Nikitchenko 3 months ago committed by GitHub
parent 918eb1dc9c
commit e406d4121d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/100-bubble-sort.md
  2. 2
      src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/101-merge-sort.md
  3. 2
      src/data/roadmaps/datastructures-and-algorithms/content/105-sorting-algorithms/103-quick-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: Learn more from the following resources:
- [@article@Bubble Sort](https://www.w3schools.com/dsa/dsa_algo_bubblesort.php) - [@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=Jdtq5uKz-w4)
- [@video@Bubble Sort](https://www.youtube.com/watch?v=p__ETf2CKY4) - [@video@Bubble Sort](https://www.youtube.com/watch?v=p__ETf2CKY4)

@ -5,4 +5,4 @@ __Merge sort__ is a type of sorting algorithm that follows the divide-and-conque
Learn more from the following resources: Learn more from the following resources:
- [@video@Merge Sort](https://www.youtube.com/watch?v=4VqmGXwpLqc) - [@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/)

@ -7,4 +7,4 @@ Learn more from the following resources:
- [@video@A Complete Overview of Quicksort](https://www.youtube.com/watch?v=0SkOjNaO1XY) - [@video@A Complete Overview of Quicksort](https://www.youtube.com/watch?v=0SkOjNaO1XY)
- [@video@QuickSort](https://www.youtube.com/watch?v=7h1s2SojIRw) - [@video@QuickSort](https://www.youtube.com/watch?v=7h1s2SojIRw)
- [@video@QuickSort Analysis](https://www.youtube.com/watch?v=-qOVVRIZzao) - [@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/)

Loading…
Cancel
Save