jewels_and_stones
jewels_and_stones.py 源码
# 宝石与石头
class Solution:
# 使用一个哈希表
def numJewelsInStones_1(self, J: str, S: str) -> int:
s, res = set(J), 0
for c in S:
if c in s:
res += 1
return res
# 另一种写法
def numJewelsInStones_2(self, J: str, S: str) -> int:
s = set(J)
return sum(c in s for c in S)
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦