码迷,mamicode.com
首页 > 其他好文 > 详细

(Easy) Ransom Note - LeetCode

时间:2019-09-10 10:22:24      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:nta   contain   mission   Once   esc   char   otherwise   div   character   

Description:

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
Accepted
122,871
Submissions
242,605

Solution:

class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
        
            if((magazine==null|| magazine.length()==0)&&(ransomNote==null || ransomNote.length()==0)){
                return true;
            }
        
            if(ransomNote==null||ransomNote.length()==0){
                return true;
            }
        
        
        for(int i = 0; i < ransomNote.length(); i++){
            
            if(Count(ransomNote, ransomNote.charAt(i)) > Count(magazine, ransomNote.charAt(i))){
                return false;
            }
        }
        
        return true;
        
    }
    
    static int Count(String str, Character a){
        
        int count = 0; 
        
        for(int i = 0; i < str.length(); i++){
            
            if(str.charAt(i)==a){
                count++;
            }
        }
        
        return count; 
    }
}

 

 

(Easy) Ransom Note - LeetCode

标签:nta   contain   mission   Once   esc   char   otherwise   div   character   

原文地址:https://www.cnblogs.com/codingyangmao/p/11495871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!