题解 | #删除公共字符#

删除公共字符

https://www.nowcoder.com/practice/f0db4c36573d459cae44ac90b90c6212

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
           String str1 = in.nextLine();
           String str2 = in.nextLine();
           func(str1,str2);
        }
        
    }
    private static void func(String str1,String str2){
        StringBuilder s = new StringBuilder();
        for(int i = 0;i<str1.length();i++){
            int j = 0;
            for(;j<str2.length();j++){
                if(str1.charAt(i)==str2.charAt(j)){
                    j++;
                    break;
                }
            }
            j--;
            if(str1.charAt(i)!=str2.charAt(j))
            System.out.print(str1.charAt(i));
        }
    }
}

全部评论

相关推荐

头像
11-07 01:12
重庆大学 Java
精致的小松鼠人狠话不多:签哪了哥
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务