码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】1399. 统计最大组的数目

时间:2020-12-01 12:05:58      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:div   max   style   tla   ash   code   etc   color   最大   

 

int countLargestGroup(int n){
    int hash[37]={0};
    int map[10001]={0};
    int i, sum, tmp, max=0, cnt=0;
    for(i=1; i<=n; i++){
        map[i]=map[i/10]+i%10;
        hash[map[i]]++;
        if (hash[map[i]]>max)
            max=hash[map[i]];
    }
    for (i=1; i<=36; i++)
        if(hash[i] == max)
            cnt++;
    return cnt;
}

 

【leetcode】1399. 统计最大组的数目

标签:div   max   style   tla   ash   code   etc   color   最大   

原文地址:https://www.cnblogs.com/ganxiang/p/14041667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!