Skip to content

Instantly share code, notes, and snippets.

@vrutberg
Created March 1, 2010 15:54
Show Gist options
  • Save vrutberg/318477 to your computer and use it in GitHub Desktop.
Save vrutberg/318477 to your computer and use it in GitHub Desktop.
function smallest(ints) {
if(ints.length == 1) { return ints[0]; }
ints.splice(0, 2, ints[0] < ints[1] ? ints[0] : ints[1]);
return smallest(ints);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment