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

字符串字符匹配

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

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner fzhinput = new Scanner(System.in);
        String zfc1 = fzhinput.nextLine();
        String zfc2 = fzhinput.nextLine();
        boolean pd = true;
        LinkedHashMap<Character,Integer> js = new LinkedHashMap<>();
        for(int i=0;i<zfc2.length();i++){
            js.put(zfc2.charAt(i),js.getOrDefault(zfc2.charAt(i),0)+1);
        }
        for(int i=0;i<zfc1.length();i++){
            char c = zfc1.charAt(i);
            if(!js.containsKey(c)||js.get(c)==0){
                pd = false;
                break;
            }
        }
        System.out.print(pd);
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
11-29 11:21
门头沟学院 Java
总包48.5w,意想不到的价格
想开了的垂耳兔很喜欢拱白菜:转人工
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务