Skip to content

Commit c6403be

Browse files
committed
Add link to README
1 parent c2fee0b commit c6403be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Navigate into the `data_structures` directory. Inside the `src` directory, you'l
1313
Run `npm test binary-search-tree` to run the tests for this function to ensure that your implementation is correct.
1414

1515
### Task 2. Implement Heapsort
16-
Inside the `src` directory you'll also find the `heap.js` file with the completed code the heap class. Your second task is to implement a sorting method called heapsort that uses the heap data structure in order to sort an array of numbers. Your `heapsort` function should return a new array containing all of the sorted data.
16+
Inside the `src` directory you'll also find the `heap.js` file with the completed code the heap class. Your second task is to implement a sorting method called [heapsort](https://en.wikipedia.org/wiki/Heapsort) that uses the heap data structure in order to sort an array of numbers. Your `heapsort` function should return a new array containing all of the sorted data.
1717

1818
Run `npm test heap` to run the tests for your `heapsort` function to ensure that your implementation is correct.
1919

0 commit comments

Comments
 (0)