-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem5.java
43 lines (34 loc) · 1.11 KB
/
Problem5.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package problem;
import java.util.stream.LongStream;
import static problem.Solution.problem;
import static utils.prime.PrimeChecker.isPrime;
public class Problem5 {
public static void main(String[] args) {
// https://projecteuler.net/problem=5
problem("Smallest multiple",
() ->
smallestEvenlyDivisibleByAllNaturalNumbersBelow(20));
}
public static long smallestEvenlyDivisibleByAllNaturalNumbersBelow(int n) {
int i = n;
long primeProduct = 1;
while (i >= 2) {
if (isPrime(i))
primeProduct = primeProduct * i;
i--;
}
i = 2;
long c = primeProduct;
while (!isDivisibleByNaturalNumbersTo(c, n))
c = primeProduct * i++;
return c;
}
static boolean isDivisibleByNaturalNumbersTo(long multiple, long n) {
return LongStream.rangeClosed(1, n)
.allMatch(i -> isAFactor(multiple, i));
}
private static boolean isAFactor(long i, long candidate) {
return i % candidate == 0;
}
private Problem5() {}
}