leetcode771. 宝石与石头

 public static int numJewelsInStones(String J, String S) {
        int result = 0;
        for (int i = 0; i < S.length(); i++) {
            for (int j = 0; j < J.length(); j++) {
                if (S.charAt(i) == J.charAt(j)) {
                    result++;
                }
            }
        }
        return result;
    }
  1. 遍历字符串S
  2. 在S的每一项中遍历字符串J
  3. 如果S和J的字符串相同,result就加1
  4. 返回result

你可能感兴趣的:(leetcode算法研究)