字符串匹配

字符串匹配

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

Set 轻松解决

import java.util.*;

public class Main {

    public Main() {
    }

    public boolean isAllCharExist(String pShortString, String pLongString) {
        Set<Character> set = new HashSet<>();
        for (char ch : pLongString.toCharArray()) {
            set.add(ch);
        }
        for (char ch : pShortString.toCharArray()) {
            if (!set.contains(ch)) {
                return false;
            }
        }
        return true;
    }

    public static void main(String[] args) {
        Main solution = new Main();
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) {
            String pShortString = in.nextLine();
            String pLongString = in.nextLine();
            boolean res = solution.isAllCharExist(pShortString, pLongString);
            System.out.println(res);
        }
    } 
}
全部评论
貌似没有去重的必要?
1 回复 分享
发布于 2021-04-01 18:37
这种题有啥意义?检验我是不是 API boy?
点赞 回复 分享
发布于 2023-06-20 11:49 北京

相关推荐

11-29 00:55
门头沟学院
区域赛银,邀请赛金,打算十二月打下Java基础、背点八股、写个外卖后去投福建小厂的寒假实习,简历应该怎么写呢?以及福州/和厦门有推荐的小厂吗?
牛客53210502...:简历一页:把区域银,邀请赛金标粗,其他的奖除非凑一页否则没有必要写。或者多页:每个站一行这样都列出来。项目经历看看牛客其他人是怎么写的,写的不好呢。简历打磨好按部就班没问题的
点赞 评论 收藏
分享
11-13 14:37
门头沟学院 Java
点赞 评论 收藏
分享
评论
19
1
分享

创作者周榜

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