Skip to content

Instantly share code, notes, and snippets.

@darkcris1
Created January 3, 2021 11:42
Show Gist options
  • Save darkcris1/6a2a122ae33070c8705e93b809d7161b to your computer and use it in GitHub Desktop.
Save darkcris1/6a2a122ae33070c8705e93b809d7161b to your computer and use it in GitHub Desktop.
Selection Sort Algorithm
function selectionSort(arr) {
for (let i = 0; i < arr.length; i++) {
for (let j = 0; j < arr.length; j++) {
if (arr[i] < arr[j]) {
const temp = arr[i]
arr[i] = arr[j]
arr[j] = temp
}
}
}
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment