[LeetCode]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:
1 | **Input:** [1,3,2,2,5,2,3,7] |
Note: The length of the input array will not exceed 20,000.
难度
Easy
方法
用一个map
存放所有值出现的次数,对于map
中的每个num
,求出num
和num+1
出现的次数之和,找出最大值即可
python代码
1 | class Solution(object): |