首页 > 其他 > 详细

383. Ransom Note

时间:2017-10-17 10:58:19      阅读:164      评论:0      收藏:0      [点我收藏+]

Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false.

Each letter in the magazine string can only be used once in your ransom note.

Note:
You may assume that both strings contain only lowercase letters.

canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true

题目含义:判断给定字符串能否由另一字符串中字符组合生成
 1     public boolean canConstruct(String ransomNote, String magazine) {
 2         Map<Character,Integer> letterMap = new HashMap<>();
 3         for (Character c:magazine.toCharArray())
 4         {
 5             letterMap.put(c,letterMap.getOrDefault(c,0)+1);
 6         }
 7         
 8         for (Character c:ransomNote.toCharArray())
 9         {
10             int count = letterMap.getOrDefault(c,0);
11             if (count<=0) return false;
12             letterMap.put(c,--count);
13         }
14         return true;        
15     }

 

383. Ransom Note

原文:http://www.cnblogs.com/wzj4858/p/7680186.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!