Skip to content

Commit 31d0d07

Browse files
committed
2022-07-01 update: added "Arithmetic Subarrays"
1 parent 21f0a01 commit 31d0d07

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
package com.smlnskgmail.jaman.leetcodejava.medium;
2+
3+
import java.util.ArrayList;
4+
import java.util.Collections;
5+
import java.util.List;
6+
7+
// https://leetcode.com/problems/arithmetic-subarrays/
8+
public class ArithmeticSubarrays {
9+
10+
private final int[] nums;
11+
private final int[] l;
12+
private final int[] r;
13+
14+
public ArithmeticSubarrays(int[] nums, int[] l, int[] r) {
15+
this.nums = nums;
16+
this.l = l;
17+
this.r = r;
18+
}
19+
20+
public List<Boolean> solution() {
21+
List<Boolean> result = new ArrayList<>();
22+
for (int i = 0; i < l.length; i++) {
23+
result.add(calculate(nums, l[i], r[i]));
24+
}
25+
return result;
26+
}
27+
28+
private boolean calculate(int[] nums, int l, int r) {
29+
List<Integer> n = new ArrayList<>();
30+
for (int i = l; i < r + 1; i++) {
31+
n.add(nums[i]);
32+
}
33+
Collections.sort(n);
34+
for (int i = 0; i < n.size() - 1; i++) {
35+
if (n.get(i + 1) - n.get(i) != n.get(1) - n.get(0)) {
36+
return false;
37+
}
38+
}
39+
return true;
40+
}
41+
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.smlnskgmail.jaman.leetcodejava.medium;
2+
3+
import org.junit.Test;
4+
5+
import java.util.List;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class ArithmeticSubarraysTest {
10+
11+
@Test
12+
public void defaultTest() {
13+
assertEquals(
14+
List.of(true, false, true),
15+
new ArithmeticSubarrays(
16+
new int[]{4, 6, 5, 9, 3, 7},
17+
new int[]{0, 0, 2},
18+
new int[]{2, 3, 5}
19+
).solution()
20+
);
21+
}
22+
23+
}

0 commit comments

Comments
 (0)