Sha256: 6cd5edcb5303f025469cdfc2281ed998e5868ffbe21c73ef0bc0a344da1337a0
Contents?: true
Size: 846 Bytes
Versions: 13
Compression:
Stored size: 846 Bytes
Contents
import java.util.stream.IntStream; public final class PrimeCalculator { public int nth(int nth) { if (nth < 1) { throw new IllegalArgumentException(); } int primesFound = 0; int possiblePrime = 1; while (primesFound < nth) { possiblePrime++; if (isPrime(possiblePrime)) { primesFound++; } } return possiblePrime; } private boolean isPrime(int n) { if (n == 1) { return false; } if (n == 2) { return true; } boolean divisible = IntStream .rangeClosed(2, (int) Math.ceil(Math.sqrt(n))) .anyMatch((int i) -> n % i == 0); if (divisible) { return false; } return true; } }
Version data entries
13 entries across 13 versions & 1 rubygems