博客搬家旧文leetcode 771. Jewels and Stones

Posted cy708

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了博客搬家旧文leetcode 771. Jewels and Stones相关的知识,希望对你有一定的参考价值。

  今天开通了博客园 ,之前的博客就不用了。之后再陆陆续续把之前的博文重新放到这里来。有标题这个tag的都是搬运的旧博客的文章。希望在这里是个新的开始,嘻嘻。

 

  技术分享图片

import java.util.Scanner;
 
class Solution {
    public static int numJewelsInStones(String J, String S) {
       int count=0;
         for(int i=0; i<J.length(); i++){
             for(int j=0; j<S.length(); j++){
                 if(J.charAt(i) == S.charAt(j))
                     count++;
                }
            }
            return count;
        }
    }
    
    public static void main(String[] args){
        Scanner in =new Scanner(System.in);
         String J=in.nextLine();
         String S=in.nextLine();
         int count=numJewelsInStones(J, S);
         System.out.println(count);
    }
}

   以上是看到题目第一反应的做法,在eclipse上运行没毛病,放到leetcode上之后报了一个编译错误:

  Line 16: error: class, interface, or enum expected

  后来把程序改成不让用户输入之后就过了,第一次刷leetcode还不太清楚为啥,先放在这里以后再来看看。

class Solution {
    public static int numJewelsInStones(String J, String S) {
      int count=0;
         for(int i=0; i<J.length(); i++){
             for(int j=0; j<S.length(); j++){
                 if(J.charAt(i) == S.charAt(j))
                     count++;
                }
            }
            return count;
    }
    
    public static void main(String[] args){
         String J="aA";
         String S="aaAbbb";
         int count=numJewelsInStones(J, S);
         System.out.println(count);
    }
}

 

以上是关于博客搬家旧文leetcode 771. Jewels and Stones的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 771. Jewels and Stones

LeetCode 771. Jewels and Stones

LeetCode 771. Jewels and Stones

[leetcode-771-Jewels and Stones]

Leetcode #771. Jewels and Stones

leetcode771. 宝石与石头