771. Jewels and Stones

/*class Solution {public:    int numJewelsInStones(string J, string S) {        int ans = 0;        unordered_set<char> s;        for(auto m:J){            s.insert(m);        }                for(aut
相關文章
相關標籤/搜索