提交 93a763d6 编写于 作者: jhaos's avatar jhaos

Add new file

上级 060c5e0e
  给定字符串`J` 代表石头中宝石的类型,和字符串 `S`代表你拥有的石头。 `S` 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石。
   `J` 中的字母不重复,`J``S`中的所有字符都是字母。字母区分大小写,因此`"a"``"A"`是不同类型的石头。
**示例 1:**
```
输入: J = "aA", S = "aAAbbbb"
输出: 3
```
**示例 2:**
```
输入: J = "z", S = "ZZ"
输出: 0
```
**注意:**
- `S``J` 最多含有`50`个字母。
- `J` 中的字符不重复。
通过次数`106,581` 提交次数`126,399`
**代码实现:**
```python
class Solution:
def numJewelsInStones(self, J: str, S: str) -> int:
from collections import Counter
sc = Counter(S)
re = 0
for i in J:
re+=sc[i]
return re
```
```python
class Solution:
def numJewelsInStones(self, J: str, S: str) -> int:
res = 0
for c in S:
if c in J:
res += 1
return res
```
```
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/jewels-and-stones
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册