Last active
February 20, 2025 19:49
-
-
Save mcsee/df27505a28b5f65faaa273b0bfe1f322 to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
This file contains hidden or 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 primeFactors(n) { | |
| var f = [], i = 0, d = 2; | |
| for (i = 0; n >= 2; ) { | |
| if(n % d == 0) { | |
| f[i++]=(d); | |
| n /= d; | |
| } | |
| else { | |
| d++; | |
| } | |
| } | |
| return f; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment