My Prime Factor Code Kata with Csharp

Aug 19, 2012 00:00 · 77 words · 1 minute read primefactor CodeKata


The prime factor is an easy Code Kata but it might take a while to find the best solution to increase the code performance. in re factoring part you will find out you do not need to go and iterate all the numbers to find the prime factors of the input number. in other words it is adequate to check the numbers which are less than the input number square root.

Download the code from my Github