We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
publicstaticvoidcheckMagazine(List<String>magazine,List<String>note){// Write your code hereMap<String,Long>magMap=magazine.stream().collect(Collectors.groupingBy(Function.identity(),Collectors.counting()));StringisPossible="Yes";for(Stringstr:note){if(magMap.get(str)==null||magMap.get(str)==0){isPossible="No";break;}else{magMap.put(str,magMap.get(str)-1);}}System.out.println(isPossible);}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Hash Tables: Ransom Note
You are viewing a single comment's thread. Return to all comments →
Java 15