-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbsoluteMax.java
More file actions
29 lines (23 loc) · 793 Bytes
/
AbsoluteMax.java
File metadata and controls
29 lines (23 loc) · 793 Bytes
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
package com.thealgorithms.maths;
import java.util.Arrays;
public class AbsoluteMax {
/**
* Compares the numbers given as arguments to get the absolute max value.
*
* @param numbers The numbers to compare
* @return The absolute max value
*/
public static int getMaxValue(int... numbers) {
if (numbers.length == 0) {
throw new IllegalArgumentException("Numbers array cannot be empty");
}
var absMaxWrapper = new Object() {
int value = numbers[0];
};
Arrays.stream(numbers)
.skip(1)
.filter(number -> Math.abs(number) > Math.abs(absMaxWrapper.value))
.forEach(number -> absMaxWrapper.value = number);
return absMaxWrapper.value;
}
}