Skip to content

Instantly share code, notes, and snippets.

@DFOXpro
Created December 6, 2014 19:31
Show Gist options
  • Save DFOXpro/72c4bbbde97c94f55dff to your computer and use it in GitHub Desktop.
Save DFOXpro/72c4bbbde97c94f55dff to your computer and use it in GitHub Desktop.
/*
* Author: Daniel Zorro @DFOXpro
* Licence: WTF-PL
*/
var main = function(n){
var yo = 0;
while(yo < (n/2)){
if(n % yo++) return yo;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment