1
2
3
4
5
6
7
8
9
10
11
|
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
tmp=[]
for i in jewels:
tmp.append(i)
tmp=set(tmp)
ans=0
for i in tmp:
for j in stones:
if i==j: ans+=1
return ans
|
cs |
처음에 jewels에 해당하는 문자가 unique가 아닐경우도 생각해서 Line 6 처럼 중복값 지웠는데
제약사항에 있네요 ㅎㅎ
반응형
'python-algorithm' 카테고리의 다른 글
Leetcode 1365. How Many Numbers Are Smaller Than the Current Number (0) | 2021.07.15 |
---|---|
Leetcode 88. Merge Sorted Array (0) | 2021.07.15 |
Leetcode 171. Excel Sheet Column Number (0) | 2021.07.15 |
Leetcode 50. Pow(x, n) (0) | 2021.07.15 |
Leetcode 43. Multiply Strings (0) | 2021.07.15 |
댓글