Skip to content

Instantly share code, notes, and snippets.

@DFOXpro
Created December 6, 2014 19:29
Show Gist options
  • Save DFOXpro/71004edf234ff0c57f57 to your computer and use it in GitHub Desktop.
Save DFOXpro/71004edf234ff0c57f57 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++)%1) return yo;
}
};
//console.log(main(20));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment