-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDay27.java
45 lines (35 loc) · 1.01 KB
/
Day27.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
44
45
public class Day27 {
public static int minimum_index(int[] seq) {
if (seq.length == 0) {
throw new IllegalArgumentException("Cannot get the minimum value index from an empty sequence");
}
int min_idx = 0;
for (int i = 1; i < seq.length; ++i) {
if (seq[i] < seq[min_idx]) {
min_idx = i;
}
}
return min_idx;
}
static class TestDataEmptyArray {
public static int[] get_array() {
return new int[0];
}
}
static class TestDataUniqueValues {
public static int[] get_array() {
return new int[] { 10, 20, 30, 40 };
}
public static int get_expected_result() {
return 0;
}
}
static class TestDataExactlyTwoDifferentMinimums {
public static int[] get_array() {
return new int[] { 10, 20, 10, 30, 40 };
}
public static int get_expected_result() {
return 0;
}
}
}