题解 | #记票统计#

记票统计

http://www.nowcoder.com/practice/3350d379a5d44054b219de7af6708894


public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            Map<String, Integer> map = new LinkedHashMap<>();
            List<String> listCan = new ArrayList<>();
            int n = sc.nextInt();
            for (int i = 0; i < n; i++) {
                listCan.add(sc.next());
            }
            List<String> list = new ArrayList<>();
            int m = sc.nextInt();
            for (int i = 0; i < m; i++) {
                list.add(sc.next());
            }
            for (String s : listCan) {
                map.put(s, 0);
            }
            int invalidNum = 0;
            for (String s : list) {
                if(map.containsKey(s)){
                    map.put(s, map.get(s) + 1);
                }else{
                    invalidNum++;
                }
            }
            map.put("Invalid", invalidNum);
            for (Map.Entry<String, Integer> entry : map.entrySet()) {
                System.out.println(entry.getKey() + " : " + entry.getValue());
            }
        }
    }
}
全部评论

相关推荐

威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务