LeetCode 771:Jewels and Stones

Posted datsno1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 771:Jewels and Stones相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 771:Jewels and Stones

LeetCode 771. Jewels and Stones

[LeetCode] 771. Jewels and Stones 珠宝和石头

[leetcode-771-Jewels and Stones]

Leetcode #771. Jewels and Stones

leetcode-771-Jewels and Stones(建立哈希表,降低时间复杂度)