Skip to content

Latest commit

 

History

History
96 lines (69 loc) · 2.42 KB

File metadata and controls

96 lines (69 loc) · 2.42 KB

English Version

题目描述

 给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头。 S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石。

J 中的字母不重复,J 和 S中的所有字符都是字母。字母区分大小写,因此"a""A"是不同类型的石头。

示例 1:

输入: J = "aA", S = "aAAbbbb"
输出: 3

示例 2:

输入: J = "z", S = "ZZ"
输出: 0

注意:

  • S 和 J 最多含有50个字母。
  •  J 中的字符不重复。

解法

哈希表实现。

Python3

class Solution:
    def numJewelsInStones(self, jewels: str, stones: str) -> int:
        jewel_set = {c for c in jewels}
        return sum([1 for c in stones if c in jewel_set])

Java

class Solution {
    public int numJewelsInStones(String jewels, String stones) {
        Set<Character> jewelSet = new HashSet<>();
        for (char ch : jewels.toCharArray()) {
            jewelSet.add(ch);
        }
        int res = 0;
        for (char ch : stones.toCharArray()) {
            res += (jewelSet.contains(ch) ? 1 : 0);
        }
        return res;
    }
}

C++

class Solution {
public:
    int numJewelsInStones(string jewels, string stones) {
        unordered_set<char> jewelsSet;
        for (int i = 0; i < jewels.length(); ++i) {
            jewelsSet.insert(jewels[i]);
        }
        int res = 0;
        for (int i = 0; i < stones.length(); ++i) {
            res += jewelsSet.count(stones[i]);
        }
        return res;
    }
};

...