Skip to content

Commit 6c335c5

Browse files
committedJan 6, 2023
Fixing the broken link for QuickSort
1 parent 65e4a7c commit 6c335c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/algorithms/sorting/quick-sort/QuickSortInPlace.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default class QuickSortInPlace extends Sort {
44
/** Sorting in place avoids unnecessary use of additional memory, but modifies input array.
55
*
66
* This process is difficult to describe, but much clearer with a visualization:
7-
* @see: http://www.algomation.com/algorithm/quick-sort-visualization
7+
* @see: https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/visualize/
88
*
99
* @param {*[]} originalArray - Not sorted array.
1010
* @param {number} inputLowIndex

0 commit comments

Comments
 (0)
Please sign in to comment.