Skip to content

Commit e2eec22

Browse files
refactor 532
1 parent ad640cb commit e2eec22

File tree

3 files changed

+27
-26
lines changed

3 files changed

+27
-26
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
package com.fishercoder.solutions;
22

3-
import java.util.Arrays;
43
import java.util.HashMap;
5-
import java.util.HashSet;
6-
import java.util.List;
74
import java.util.Map;
8-
import java.util.Set;
95

106
/**
7+
* 532. K-diff Pairs in an Array
8+
*
119
* Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array.
1210
* Here a k-diff pair is defined as an integer pair (i, j), where i and j are both numbers in the array and their absolute difference is k.
1311
@@ -34,36 +32,29 @@ The pairs (i, j) and (j, i) count as the same pair.
3432
*/
3533
public class _532 {
3634

37-
//this O(n^2) will result in TLE
38-
public int findPairs_On2(int[] nums, int k) {
39-
Set<List<Integer>> pairsSet = new HashSet<>();
40-
for (int i = 0; i < nums.length - 1; i++) {
41-
for (int j = i + 1; j < nums.length; j++) {
42-
if (Math.abs(nums[j] - nums[i]) == k) {
43-
pairsSet.add(nums[i] > nums[j] ? Arrays.asList(nums[j], nums[i]) : Arrays.asList(nums[i], nums[j]));
44-
}
45-
}
46-
}
47-
return pairsSet.size();
48-
}
49-
5035
public int findPairs(int[] nums, int k) {
51-
if (nums == null || nums.length == 0 || k < 0) return 0;
36+
if (nums == null || nums.length == 0 || k < 0) {
37+
return 0;
38+
}
5239

5340
Map<Integer, Integer> map = new HashMap();
54-
for (int i : nums) {
55-
map.put(i, map.getOrDefault(i, 0) + 1);
41+
for (int num : nums) {
42+
map.put(num, map.getOrDefault(num, 0) + 1);
5643
}
5744

5845
int answer = 0;
5946
for (int key : map.keySet()) {
6047
if (k == 0) {
61-
if (map.get(key) >= 2) answer++;
48+
if (map.get(key) >= 2) {
49+
answer++;
50+
}
6251
} else {
63-
if (map.containsKey(key + k)) answer++;
52+
if (map.containsKey(key + k)) {
53+
answer++;
54+
}
6455
}
6556
}
6657
return answer;
6758
}
6859

69-
}
60+
}

src/test/java/com/fishercoder/_532Test.java

+10-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
import org.junit.BeforeClass;
66
import org.junit.Test;
77

8+
import java.io.IOException;
9+
import java.io.InputStream;
10+
import java.util.Properties;
11+
812
import static junit.framework.Assert.assertEquals;
913

1014
public class _532Test {
@@ -15,8 +19,11 @@ public class _532Test {
1519
private static int[] nums;
1620

1721
@BeforeClass
18-
public static void setup() {
22+
public static void setup() throws IOException {
1923
test = new _532();
24+
Properties properties = new Properties();
25+
InputStream inputStream = _532.class.getClassLoader().getResourceAsStream("fishercoder.properties");
26+
properties.load(inputStream);
2027
}
2128

2229
@Before
@@ -55,8 +62,8 @@ public void test3() {
5562
}
5663

5764
// This test case will throw TLE error if your algorithm is O(n^2)
58-
// And it doesn't compile in IntelliJ, so I'll ignore it for build
59-
// @Ignore("Ignored")
65+
// And it doesn't compile in IntelliJ, it throws "java: code too large" error
66+
// so I'll comment it out for build
6067
// @Test
6168
// public void test4() {
6269
// k = -139;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
size = 100M
2+
#this didn't work out as expected to make _532.test4 to compile per this post:
3+
#https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java

0 commit comments

Comments
 (0)