Skip to content

Instantly share code, notes, and snippets.

@opr
Created September 27, 2016 15:46
Show Gist options
  • Save opr/da7e3700b32b83cc24a81709a4a6688e to your computer and use it in GitHub Desktop.
Save opr/da7e3700b32b83cc24a81709a4a6688e to your computer and use it in GitHub Desktop.
function removeLargest(a, b, c) {
return a > b ? ( a > c ? [b, c] : [a, b] ) : ( b > c ? [a, c] : [a, b] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment