Skip to content

Commit 85430a3

Browse files
add 1984
1 parent 3dedc14 commit 85430a3

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ _If you like this project, please leave me a star._ ★
88

99
| # | Title | Solutions | Video | Difficulty | Tag
1010
|-----|----------------|---------------|--------|-------------|-------------
11+
|1984|[Minimum Difference Between Highest and Lowest of K Scores](https://leetcode.com/problems/minimum-difference-between-highest-and-lowest-of-k-scores/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1984.java) ||Easy||
1112
|1981|[Minimize the Difference Between Target and Chosen Elements](https://leetcode.com/problems/minimize-the-difference-between-target-and-chosen-elements/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1981.java) ||Medium|DP|
1213
|1980|[Find Unique Binary String](https://leetcode.com/problems/find-unique-binary-string/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1980.java) ||Medium||
1314
|1979|[Find Greatest Common Divisor of Array](https://leetcode.com/problems/find-greatest-common-divisor-of-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1979.java) ||Easy||
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package com.fishercoder.solutions;
2+
3+
import java.util.Arrays;
4+
5+
public class _1984 {
6+
public static class Solution1 {
7+
public int minimumDifference(int[] nums, int k) {
8+
Arrays.sort(nums);
9+
int minDiff = nums[nums.length - 1];
10+
for (int i = 0; i <= nums.length - k; i++) {
11+
minDiff = Math.min(minDiff, nums[i + k - 1] - nums[i]);
12+
}
13+
return minDiff;
14+
}
15+
}
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._1984;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class _1984Test {
10+
private static _1984.Solution1 solution1;
11+
12+
@BeforeClass
13+
public static void setup() {
14+
solution1 = new _1984.Solution1();
15+
}
16+
17+
@Test
18+
public void test1() {
19+
assertEquals(0, solution1.minimumDifference(new int[]{90}, 1));
20+
}
21+
22+
@Test
23+
public void test2() {
24+
assertEquals(2, solution1.minimumDifference(new int[]{9,4,1,7}, 2));
25+
}
26+
27+
}

0 commit comments

Comments
 (0)