1
1
package com .fishercoder .solutions ;
2
2
3
- import java .util .Arrays ;
4
3
import java .util .HashMap ;
5
- import java .util .HashSet ;
6
- import java .util .List ;
7
4
import java .util .Map ;
8
- import java .util .Set ;
9
5
10
6
/**
7
+ * 532. K-diff Pairs in an Array
8
+ *
11
9
* Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array.
12
10
* 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.
13
11
@@ -34,36 +32,29 @@ The pairs (i, j) and (j, i) count as the same pair.
34
32
*/
35
33
public class _532 {
36
34
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
-
50
35
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
+ }
52
39
53
40
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 );
56
43
}
57
44
58
45
int answer = 0 ;
59
46
for (int key : map .keySet ()) {
60
47
if (k == 0 ) {
61
- if (map .get (key ) >= 2 ) answer ++;
48
+ if (map .get (key ) >= 2 ) {
49
+ answer ++;
50
+ }
62
51
} else {
63
- if (map .containsKey (key + k )) answer ++;
52
+ if (map .containsKey (key + k )) {
53
+ answer ++;
54
+ }
64
55
}
65
56
}
66
57
return answer ;
67
58
}
68
59
69
- }
60
+ }
0 commit comments