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

【leetcode】好数对的数目

时间:2020-09-18 00:54:43      阅读:30      评论:0      收藏:0      [点我收藏+]

标签:div   ret   pair   repeat   span   pre   tco   ack   ++   

 

int numIdenticalPairs(int* nums, int numsSize){
    int hash[101] = {0};
    int ret = 0;

    for(int i = 0; i < numsSize; i++)
    {
        hash[nums[i]]++;
        ret += hash[nums[i]] - 1;
    }

    return ret;
}

 

【leetcode】好数对的数目

标签:div   ret   pair   repeat   span   pre   tco   ack   ++   

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

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