594.Longest Harmonious Subsequence(Counter的用法)

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.

import collections
class Solution:
    def findLHS(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        dic = dict(collections.Counter(nums))
        res = 0
        for key,value in dic.items():
            if key+1 in dic:
                res = max(res,value+dic[key+1])
        return res
posted @ 2018-10-10 10:51  bernieloveslife  阅读(88)  评论(0编辑  收藏  举报