LeetCode 771. Jewels and Stones - 보석과 돌 Jewels and Stones - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 돌을 나타내는 S와 보석을 나타내는 J 가 주어졌을 때, 돌안에 보석이 몇개 들어있는지 알려주기 예시 풀이 1. 해시 테이블을 이용한 풀이 class Solution: def numJewelsInStones(self, J: str, S: str) -> int: freq = {} count = 0 for c..