Skip to content

Instantly share code, notes, and snippets.

@mistadikay
Created March 30, 2015 06:43
Show Gist options
  • Save mistadikay/47bd66a54d4a586783e1 to your computer and use it in GitHub Desktop.
Save mistadikay/47bd66a54d4a586783e1 to your computer and use it in GitHub Desktop.
let insertionSort = (arr) => {
for (let i = 0; i < a.length; i++) {
let toCmp = arr[i];
for (let j = i; j > 0 && toCmp < a[j - 1]; j--)
arr[j] = a[j - 1];
arr[j] = toCmp;
}
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment