↓ 9 callersMethodgetNthPrimeReturns the Nth prime, starting with 0,2,3,5,7,11,13. The zero-th prime will be 0. If input is less than zero, then throws IllegalArgumentException. @
code-practice/project-euler/in-java/src/com/danialgoodwin/util/PrimeUtils.java:160
↓ 4 callersMethodgetAllFactorsReturns all factors for input, including 1 and the number. Ex: For 12, returns [1,2,3,4,6,12]. Returns an empty list for input less than 1.
code-practice/project-euler/in-java/src/com/danialgoodwin/util/FactorUtils.java:37