Skip to content

Instantly share code, notes, and snippets.

@fakemau5
Created July 22, 2013 06:40
Show Gist options
  • Save fakemau5/6051733 to your computer and use it in GitHub Desktop.
Save fakemau5/6051733 to your computer and use it in GitHub Desktop.
var array = [15,14,13,12,11,10,9,8,7,6,5,4,3,2,1];
var counter = 0;
var max = array.length - 1;
for (var a = max; a > 0; a--) {
for (var b = 0; b < array.length - a; b++) {
counter++;
if (array[b+a] > array[b]) {
console.log("trovato " + a + " in " + counter + " iterazioni");
return;
}
}
}
console.log("nessun risultato in " + counter + " iterazioni");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment