Skip to content

Instantly share code, notes, and snippets.

View kakol20's full-sized avatar
🎯
Focusing

Adrian Aquino-Neary kakol20

🎯
Focusing
View GitHub Profile
@kakol20
kakol20 / newHeapSort.js
Last active October 23, 2024 12:46
Heap sort
function customSort(a, b) {
// descending
return a > b;
// ascending
//return a < b;
}
let arr = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5];
const len = arr.length;