리트코드 771번 Jewels and Stones (Python)

Kim Yongbin·2023년 9월 29일
0

코딩테스트

목록 보기
80/162

Problem

https://leetcode.com/problems/jewels-and-stones/description/

Solution

from collections import Counter

class Solution:
    def numJewelsInStones(self, jewels: str, stones: str) -> int:
        counter = Counter(stones)
        answer = 0
        for jewel in jewels:
            answer += counter[jewel]

        return answer

Reference

파이썬 알고리즘 인터뷰 29번

profile
반박 시 여러분의 말이 맞습니다.

0개의 댓글