Created
December 9, 2012 23:51
-
-
Save DeividSaenz/4247559 to your computer and use it in GitHub Desktop.
Encontrar numero entre X y Y (VERSION 2.1)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function buscarDesdeHasta(desde,X){ | |
var posicion = x - desde; | |
return posicion; | |
} | |
// Sólo funciona si el arreglo va a estar ordenado | |
// No crea ningún arreglo | |
// Demasiado sencillo :S |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Deivid, no se si me confundo, pero en Arduino por lo menos, si a un valor lo llamas X (en mayúsculas) y luego lo llamas x en minúscula no lo entiende.
De modo que quedaría así.
Chrome console________________________
function buscarDesdeHasta(desde,x){
var posicion = x - desde;
return posicion;
}