首页 > 其他 > 详细

771. Jewels and Stones

时间:2019-03-07 19:34:16      阅读:159      评论:0      收藏:0      [点我收藏+]

 

 

class Solution {
public:
    int numJewelsInStones(string J, string S) {
        vector<int> container(256,0); 
        for(char s : S)
            container[s - 0]++;
        int count = 0;
        for(char j : J)
            count += container[j - 0];
        return count;
    }
};

 

771. Jewels and Stones

原文:https://www.cnblogs.com/ymjyqsx/p/10491420.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!