题解 | #字符串字符匹配#

字符串字符匹配

http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        Set<Character> hs = new HashSet<>();
        while (in.hasNext()) { 
            String ss = in.nextLine();
            String ls = in.nextLine();
            for(int i =0; i<ls.length(); i++){
                hs.add(ls.charAt(i));
            }
            boolean flag = true;
            for(int i = 0; i<ss.length(); i++){
                if(hs.add(ss.charAt(i))){
                    flag = false;
                }
            }
            System.out.print(flag);
        }
    }
}
全部评论

相关推荐

11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
shtdbb_:还不错,没有让你做了笔试再挂你
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务