|
|
9 年之前 | |
|---|---|---|
| .. | ||
| .meta/src/reference/java | 9 年之前 | |
| src | 9 年之前 | |
| README.md | 9 年之前 | |
| build.gradle | 10 年之前 | |
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:
You can run all the tests for an exercise by entering
$ gradle test
in your terminal.
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.