fix heading level 2 text (#36499)

This commit is contained in:
Cleo Aguiar
2019-07-24 05:36:55 -03:00
committed by Randell Dawson
parent 1494a50123
commit c856fe56bd

View File

@@ -10,7 +10,7 @@ The steps involved in Quick Sort are:
- Partitioning: Sort the array in such a manner that all elements less than the pivot are to the left, and all elements greater than the pivot are to the right.
- Call Quicksort recursively, taking into account the previous pivot to properly subdivide the left and right arrays. (A more detailed explanation can be found in the comments below)
## Exmaple Implementations in Various Languages
## Example Implementations in Various Languages
### Implementation in JavaScript: