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,Integer>map=newHashMap<>();Map<String,Integer>noteMap=newHashMap<>();for(Stringstr:magazine){if(map.containsKey(str))map.put(str,map.get(str)+1);elsemap.put(str,1);}for(Stringstr:note){if(noteMap.containsKey(str))noteMap.put(str,noteMap.get(str)+1);elsenoteMap.put(str,1);}Stringans="Yes";for(Map.Entry<String,Integer>set:noteMap.entrySet()){if(!map.containsKey(set.getKey())||(map.containsKey(set.getKey())&&map.get(set.getKey())<noteMap.get(set.getKey()))){ans="No";}}System.out.println(ans);
}
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: