Skip to content

Commit

Permalink
Fixing the broken link for QuickSort
Browse files Browse the repository at this point in the history
  • Loading branch information
trekhleb committed Jan 6, 2023
1 parent 65e4a7c commit 6c335c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/sorting/quick-sort/QuickSortInPlace.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default class QuickSortInPlace extends Sort {
/** Sorting in place avoids unnecessary use of additional memory, but modifies input array.
*
* This process is difficult to describe, but much clearer with a visualization:
* @see: http:https://www.algomation.com/algorithm/quick-sort-visualization
* @see: https:https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/visualize/
*
* @param {*[]} originalArray - Not sorted array.
* @param {number} inputLowIndex
Expand Down

0 comments on commit 6c335c5

Please sign in to comment.