|
|
vor 9 Jahren | |
|---|---|---|
| .. | ||
| .meta | vor 9 Jahren | |
| src | vor 9 Jahren | |
| README.md | vor 9 Jahren | |
| build.gradle | vor 10 Jahren | |
Compute the prime factors of a given natural number.
A prime number is only evenly divisible by itself and 1.
Note that 1 is not a prime number.
What are the prime factors of 60?
Our successful divisors in that computation represent the list of prime factors of 60: 2, 2, 3, and 5.
You can check this yourself:
To run the tests:
$ gradle test
For more detailed info about the Java track see the help page.
The Prime Factors Kata by Uncle Bob http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata
It's possible to submit an incomplete solution so you can see how others have completed the exercise.