LeetCode題解(1394):找出數組中的幸運數(Python)

題目:原題鏈接(簡單)

解法 時間複雜度 空間複雜度 執行用時
Ans 1 (Python) O(N2logN)O(N^2logN) O(N)O(N) 64ms (62.67%)
Ans 2 (Python) O(N)O(N) O(N)O(N) 64ms (62.67%)
Ans 3 (Python)

LeetCode的Python執行用時隨緣,只要時間複雜度沒有明顯差異,執行用時一般都在同一個量級,僅作參考意義。

解法一(哈希表+排序):

def findLucky(self, arr: List[int]) -> int:
    count = collections.Counter(arr)
    for key in sorted(count.keys(), reverse=True):
        if key == count[key]:
            return key
    else:
        return -1

解法二(哈希表):

def findLucky(self, arr: List[int]) -> int:
    count = collections.Counter(arr)
    ans = -1
    for key, value in count.items():
        if key == value:
            ans = max(ans, key)
    return ans
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章