为了不在赎金信中暴露字迹,从杂志上搜索各个需要的字母,组成单词来表达意思.

为了不在赎金信中暴露字迹,从杂志上搜索各个需要的字母,组成单词来表达意思。
给你一个赎金信 (ransomNote) 字符串和一个杂志(magazine)字符串,判断 ransomNote 能不能由 magazines 里面的字符构成。
如果可以构成,返回 true ;否则返回 false 。
magazine 中的每个字符只能在 ransomNote 中使用一次。
class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
            char ransomNotes[]=ransomNote.toCharArray();
            char magazines[]=magazine.toCharArray();
            boolean flag=false;
            for (int i = 0; i < ransomNote.length(); i++

为了不在赎金信中暴露字迹,从杂志上搜索各个需要的字母,组成单词来表达意思.最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/8177.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>