2020年8月12日 星期三

C名題精選百則1-1: 最長平台

找出最長平台
1,2,2,3,3,3,4,5,5,6
把陣列中最長的平台找出

class Solution:
    def findPlate(self,list):
        """
        :type nums: List[int]
        :rtype: int
        """
        #length=len(list)
        sorted_list=sorted(list)
        length=1
        for i in range(len(sorted_list)):

            if(sorted_list[i]==sorted_list[i-length]):
                length=length+1
        return sorted_list[length]


nums=[1,2,2,3,3,3,4,5,5,6]


result=Solution().findPlate(nums)
print(result)

沒有留言:

如何下載Facebook 相簿跟影片

影片:透過chrome plug-in : Video Downloader for Facebook<sup>TM</sup> 相簿: 透過chrome plug-in : Tampermonkey 搭配script : Facebo...