최근 포스트

[LeetCode] 771. Jewels and Stones

최대 1 분 소요

Python class Solution: def numJewelsInStones(self, jewels: str, stones: str) -> int: answer = 0 for stone in stones: if st...