Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Created February 16, 2015 01:34
Show Gist options
  • Save gartenfeld/716286b3b133dfd12609 to your computer and use it in GitHub Desktop.
Save gartenfeld/716286b3b133dfd12609 to your computer and use it in GitHub Desktop.
Binary combination adding to max.
function ArrayAdditionI(arr) {
// code goes here
var max = Math.max.apply( Math, arr ),
idx = arr.indexOf(max);
if (idx>-1) { arr.splice(idx, 1) }
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment