LeetCode題解(1399):統計最大組的數目(Python)

題目:原題鏈接(簡單)

解法 時間複雜度 空間複雜度 執行用時
Ans 1 (Python) O(NlogN)O(NlogN) O(logN)O(logN) 88ms (85.88%)
Ans 2 (Python)
Ans 3 (Python)

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

解法一(暴力解法):

def countLargestGroup(self, n: int) -> int:
    def helper(k):
        a = 0
        while k:
            a += k % 10
            k = k // 10
        return a

    hashmap = {}
    for i in range(1, n + 1):
        m = helper(i)
        if m in hashmap:
            hashmap[m] += 1
        else:
            hashmap[m] = 1

    maximum = max(hashmap.values())
    ans = 0
    for key, values in hashmap.items():
        if values == maximum:
            ans += 1
    return ans
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章