forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_594.java
37 lines (31 loc) · 1.09 KB
/
_594.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
/**
* 594. Longest Harmonious Subsequence
*
* We define a harmonious array is an array where the difference between its maximum value and its minimum value is exactly 1.
Now, given an integer array, you need to find the length of its longest harmonious subsequence among all its possible subsequences.
Example 1:
Input: [1,3,2,2,5,2,3,7]
Output: 5
Explanation: The longest harmonious subsequence is [3,2,2,2,3].
Note: The length of the input array will not exceed 20,000.
*/
public class _594 {
public static class Solution1 {
public int findLHS(int[] nums) {
Map<Integer, Integer> map = new HashMap<>();
for (int i : nums) {
map.put(i, map.getOrDefault(i, 0) + 1);
}
int max = 0;
for (int i = 0; i < nums.length; i++) {
if (map.containsKey(nums[i] + 1)) {
max = Math.max(max, map.get(nums[i]) + map.get(nums[i] + 1));
}
}
return max;
}
}
}