第十二天 Jewels and Stones

刷水题,果然也是一件可以提高幸福感的事情,今天因为家里有点事情,12点多才到家,就只能选择了一道迄今为止,最最最水的一道题

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

解法其实非常直接,直接两重循环即可,那么毕竟是用python的话,就重新练习了一下for循环的用法,同时还有list支持count的方法,这样代码看起来就稍微清晰了点点。

但性能上还是渣渣

class Solution:
    def numJewelsInStones(self, J, S):
        """
        :type J: str
        :type S: str
        :rtype: int
        """
        ret = 0
        for i in range(len(J)):
            ret = ret + S.count(J[i])
        return ret

你可能感兴趣的:(第十二天 Jewels and Stones)