[LeetCode] 771. Jewels and Stones
문제
풀이
- jewels에서 for문을 돌며 각 문자열에 대한 갯수를 결과에 더해줌.
- Counter를 사용하면 각 문자에 대한 갯수를 확인할 수 있음.
코드
from collections import Counter
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
res = 0
for j in jewels :
tmp = Counter(stones)[j]
res += tmp
return res
Author And Source
이 문제에 관하여([LeetCode] 771. Jewels and Stones), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@tldjfj123/LeetCode-771.-Jewels-and-Stones
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- jewels에서 for문을 돌며 각 문자열에 대한 갯수를 결과에 더해줌.
- Counter를 사용하면 각 문자에 대한 갯수를 확인할 수 있음.
코드
from collections import Counter
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
res = 0
for j in jewels :
tmp = Counter(stones)[j]
res += tmp
return res
Author And Source
이 문제에 관하여([LeetCode] 771. Jewels and Stones), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@tldjfj123/LeetCode-771.-Jewels-and-Stones
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
from collections import Counter
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
res = 0
for j in jewels :
tmp = Counter(stones)[j]
res += tmp
return res
Author And Source
이 문제에 관하여([LeetCode] 771. Jewels and Stones), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tldjfj123/LeetCode-771.-Jewels-and-Stones저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)