2023-07-24力扣每日一题

链接:

771. 宝石与石头

题意:

简单题,不多说

解:

简单题,不多说

实际代码:

#include
using namespace std;
int numJewelsInStones(string jewels, string stones)
{
    setchset;int ans=0;
    for(auto &ch:jewels) chset.insert(ch);
    for(auto &ch:stones) if(chset.count(ch)) ans++;
    return ans;
}
int main()
{
    string jewels,stones;
    cin>>jewels>>stones;
    int ans=numJewelsInStones(jewels,stones);
    cout<

限制:

  • 1 <= jewels.length, stones.length <= 50
  • jewels 和 stones 仅由英文字母组成
  • jewels 中的所有字符都是 唯一的

你可能感兴趣的:(力扣每日一题,leetcode,算法)