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

LeetCode 771:Jewels and Stones

时间:2019-06-05 16:30:32      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:span   one   return   bsp   and   strlen   ++   pre   color   

C语言:

int numJewelsInStones(char * J, char * S){
    int c=0;
    int a = strlen(J);
    int b = strlen(S);
    for(int i=0;i<a;i++)
    {
        for(int j=0;j<b;j++)
        {
            if(J[i] == S[j])
            {
                c++;
            }
        }
    }
    return c;
}

 

LeetCode 771:Jewels and Stones

标签:span   one   return   bsp   and   strlen   ++   pre   color   

原文地址:https://www.cnblogs.com/datsno1/p/10980251.html

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