ID | Title | Difficulty | |
---|---|---|---|
Loading... |
383. Ransom Note
Easy
LeetCode
Hash Table, String, Counting
Problem
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.
Example 1:
Input: ransomNote = "a", magazine = "b"
Output: false
Example 2:
Input: ransomNote = "aa", magazine = "ab"
Output: false
Example 3:
Input: ransomNote = "aa", magazine = "aab"
Output: true
Code
class Solution {
public boolean canConstruct(String ransomNote, String magazine) {
int[] dict = new int[26];
for(char c : magazine.toCharArray()){
dict[c - 'a']++;
}
for(char c : ransomNote.toCharArray()){
dict[c - 'a']--;
}
for(int i = 0; i < 26; i++){
if(dict[i] < 0) return false;
}
return true;
}
}
按 <- 键看上一题!
382. Linked List Random Node
按 -> 键看下一题!
384. Shuffle an Array