Skip to content

Latest commit

 

History

History
146 lines (121 loc) · 2.86 KB

File metadata and controls

146 lines (121 loc) · 2.86 KB

中文文档

Description

You are given an integer n.

Each number from 1 to n is grouped according to the sum of its digits.

Return the number of groups that have the largest size.

 

Example 1:

Input: n = 13
Output: 4
Explanation: There are 9 groups in total, they are grouped according sum of its digits of numbers from 1 to 13:
[1,10], [2,11], [3,12], [4,13], [5], [6], [7], [8], [9].
There are 4 groups with largest size.

Example 2:

Input: n = 2
Output: 2
Explanation: There are 2 groups [1], [2] of size 1.

 

Constraints:

  • 1 <= n <= 104

Solutions

Python3

class Solution:
    def countLargestGroup(self, n: int) -> int:
        cnt = Counter()
        ans, mx = 0, 0
        for i in range(1, n + 1):
            t = sum(int(v) for v in str(i))
            cnt[t] += 1
            if mx < cnt[t]:
                mx = cnt[t]
                ans = 1
            elif mx == cnt[t]:
                ans += 1
        return ans

Java

class Solution {
    public int countLargestGroup(int n) {
        int[] cnt = new int[40];
        int mx = 0, ans = 0;
        for (int i = 1; i <= n; ++i) {
            int t = 0;
            int j = i;
            while (j != 0) {
                t += j % 10;
                j /= 10;
            }
            ++cnt[t];
            if (mx < cnt[t]) {
                mx = cnt[t];
                ans = 1;
            } else if (mx == cnt[t]) {
                ++ans;
            }
        }
        return ans;
    }
}

C++

class Solution {
public:
    int countLargestGroup(int n) {
        vector<int> cnt(40);
        int mx = 0, ans = 0;
        for (int i = 1; i <= n; ++i) {
            int t = 0;
            int j = i;
            while (j) {
                t += j % 10;
                j /= 10;
            }
            ++cnt[t];
            if (mx < cnt[t]) {
                mx = cnt[t];
                ans = 1;
            } else if (mx == cnt[t])
                ++ans;
        }
        return ans;
    }
};

Go

func countLargestGroup(n int) int {
	cnt := make([]int, 40)
	mx, ans := 0, 0
	for i := 1; i <= n; i++ {
		t := 0
		j := i
		for j != 0 {
			t += j % 10
			j /= 10
		}
		cnt[t]++
		if mx < cnt[t] {
			mx = cnt[t]
			ans = 1
		} else if mx == cnt[t] {
			ans++
		}
	}
	return ans
}

...