(Easy) Ransom Note - LeetCode
Posted codingyangmao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(Easy) Ransom Note - LeetCode相关的知识,希望对你有一定的参考价值。
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
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的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] 383. Ransom Note_Easy tag: Hash Table
Leet Code OJ 189. Rotate Array [Difficulty: Easy]
Leet Code OJ 88. Merge Sorted Array [Difficulty: Easy]
Leet Code OJ 58. Length of Last Word [Difficulty: Easy]