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

字符串字符匹配

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);
        }
    }
}
全部评论

相关推荐

fRank1e:吓得我不敢去外包了,但是目前也只有外包这一个实习,我还要继续去吗
点赞 评论 收藏
分享
每晚夜里独自颤抖:你cet6就cet6,cet4就cet4,你写个cet证书等是什么意思。专业技能快赶上项目行数,你做的这2个项目哪里能提现你有这么多技能呢
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务