jewels와 stones라는 string이 주어지고 stones의 각 character는 내가 가지고 있는 stone type을 의미한다. 내가 가지고 있는 stones중 jewels가 몇개인지 개수를 return 한다.
*소문자와 대문자는 다른 stone으로 구분한다.
EX1) jewels = "aA", stones="aAAbbb" => 3
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
count = 0;
for i in range(len(jewels)):
count += stones.count(jewels[i]);
return count
'👩💻Developer > Leetcode' 카테고리의 다른 글
[Easy][Python] Defanging an IP Address (0) | 2022.10.23 |
---|---|
[Easy][Python] Build Array from Permutation (0) | 2022.10.23 |
[Easy][Python] Find Center of Star Graph (0) | 2022.10.22 |
[Easy][Python] Count Items Matching a Rule (0) | 2022.10.22 |
[Easy][Python] Kids With the Greatest Number of Candies (0) | 2022.10.21 |
댓글