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

字符串字符匹配

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

import java.util.HashSet;
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        
        String S = in.nextLine();
        String T = in.nextLine();
        
        char[] charsS = S.toCharArray();
        char[] charsT = T.toCharArray();

        HashSet<Character> sSet = new HashSet<>();
        HashSet<Character> tSet = new HashSet<>();
        
        for(char aChar: charsS){
            sSet.add(aChar);
        }
        for(char aChar: charsT){
            tSet.add(aChar);
        }
        
        if(sSet.size() > tSet.size()){
            System.out.print("false");
        }else{
            if(tSet.containsAll(sSet)){
                System.out.print("true");
            }else{
                System.out.print("false");
            }
        }
    }
}

全部评论

相关推荐

神哥了不得:(非引流)先把你的个人信息打码一下吧,看了几万份的简历,让我不知道该怎么说
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务