leetcode383 赎金信

自己写的  很拉 哈哈哈哈哈 

class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
        if(ransomNote.length()>magazine.length())
            return false;
        HashMap map=new HashMap<>();
        for(int i=0;i

你可能感兴趣的:(学习做题leetcode,leetcode,java,hashmap)