Skip to content

Commit 0b9a656

Browse files
[N-0] refactor 697
1 parent ab0c23b commit 0b9a656

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

src/main/java/com/fishercoder/solutions/_697.java

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
package com.fishercoder.solutions;
22

33
import java.util.ArrayList;
4+
import java.util.Collections;
45
import java.util.HashMap;
56
import java.util.List;
67
import java.util.Map;
78

89
/**
910
* 697. Degree of an Array
1011
*
11-
* Given a non-empty array of non-negative integers nums, the degree of this array is defined as the maximum frequency of any one of its elements.
12+
* Given a non-empty array of non-negative integers nums,
13+
* the degree of this array is defined as the maximum frequency of any one of its elements.
1214
* Your task is to find the smallest possible length of a (contiguous) subarray of nums, that has the same degree as nums.
1315
1416
Example 1:
@@ -75,4 +77,29 @@ int findLength(int[] arr, int candidate) {
7577
return (lastAppearance - firstAppearance) + 1;
7678
}
7779
}
80+
81+
public static class Solution2 {
82+
public int findShortestSubArray(int[] nums) {
83+
Map<Integer, Integer> count = new HashMap<>();
84+
Map<Integer, Integer> left = new HashMap<>();
85+
Map<Integer, Integer> right = new HashMap<>();
86+
87+
for (int i = 0; i < nums.length; i++) {
88+
count.put(nums[i], count.getOrDefault(nums[i], 0) + 1);
89+
if (!left.containsKey(nums[i])) {
90+
left.put(nums[i], i);
91+
}
92+
right.put(nums[i], i);
93+
}
94+
95+
int result = nums.length;
96+
int degree = Collections.max(count.values());
97+
for (int num : count.keySet()) {
98+
if (count.get(num) == degree) {
99+
result = Math.min(result, right.get(num) - left.get(num) + 1);
100+
}
101+
}
102+
return result;
103+
}
104+
}
78105
}

src/test/java/com/fishercoder/_697Test.java

+7
Original file line numberDiff line numberDiff line change
@@ -8,41 +8,48 @@
88

99
public class _697Test {
1010
private static _697.Solution1 solution1;
11+
private static _697.Solution2 solution2;
1112
private static int[] nums;
1213

1314
@BeforeClass
1415
public static void setup() {
1516
solution1 = new _697.Solution1();
17+
solution2 = new _697.Solution2();
1618
}
1719

1820
@Test
1921
public void test1() {
2022
nums = new int[]{1};
2123
assertEquals(1, solution1.findShortestSubArray(nums));
24+
assertEquals(1, solution2.findShortestSubArray(nums));
2225
}
2326

2427
@Test
2528
public void test2() {
2629
nums = new int[]{1, 2, 2, 3, 1};
2730
assertEquals(2, solution1.findShortestSubArray(nums));
31+
assertEquals(2, solution2.findShortestSubArray(nums));
2832
}
2933

3034
@Test
3135
public void test3() {
3236
nums = new int[]{1, 2, 2, 3, 1, 1};
3337
assertEquals(6, solution1.findShortestSubArray(nums));
38+
assertEquals(6, solution2.findShortestSubArray(nums));
3439
}
3540

3641
@Test
3742
public void test4() {
3843
nums = new int[]{1, 2, 2, 3, 1, 1, 5};
3944
assertEquals(6, solution1.findShortestSubArray(nums));
45+
assertEquals(6, solution2.findShortestSubArray(nums));
4046
}
4147

4248
@Test
4349
public void test5() {
4450
nums = new int[]{1, 2, 2, 3, 1, 4, 2};
4551
assertEquals(6, solution1.findShortestSubArray(nums));
52+
assertEquals(6, solution2.findShortestSubArray(nums));
4653
}
4754

4855
}

0 commit comments

Comments
 (0)