Skip to content

Instantly share code, notes, and snippets.

@r8928
Created January 24, 2023 11:11
Show Gist options
  • Save r8928/657c09a3632e3bd036297700b70cdbd5 to your computer and use it in GitHub Desktop.
Save r8928/657c09a3632e3bd036297700b70cdbd5 to your computer and use it in GitHub Desktop.
function sort(array) {
for (let j = 0; j < array.length; j++) {
var smallest = j;
for (let i = j + 1; i < array.length; i++) {
if (array[smallest] <= array[i]) {
smallest = i;
}
}
array.unshift(array.splice(smallest, 1)[0]);
}
return array;
}
array = [9, 9, 1, 5, -7, -3, 2, 2, 0, 0];
console.log(sort(array));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment