LeetCode之Ransom Note

举报
chenyu 发表于 2021/07/27 00:17:22 2021/07/27
【摘要】 1、题目 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 fro...

1、题目

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.


   
  1. canConstruct("a", "b") -> false
  2. canConstruct("aa", "ab") -> false
  3. canConstruct("aa", "aab") -> true

 


2、代码实现


   
  1. public class Solution {
  2. public boolean canConstruct(String ransomNote, String magazine) {
  3. if (magazine == null)
  4. return false;
  5. if (ransomNote == null)
  6. return false;
  7. if (ransomNote.length() == 0 && magazine.length() == 0)
  8. return true;
  9. List<Character> list = new ArrayList<Character>();
  10. for (char c : magazine.toCharArray()) {
  11. list.add(Character.valueOf(c));
  12. }
  13. if (ransomNote.length() == magazine.length()) {
  14. for (int i = 0; i < ransomNote.length(); i++) {
  15. if (!list.remove(Character.valueOf(ransomNote.charAt(i)))) {
  16. return false;
  17. }
  18. }
  19. return true;
  20. } else {
  21. for (int i = 0; i < ransomNote.length(); i++) {
  22. if (!list.remove(Character.valueOf(ransomNote.charAt(i)))) {
  23. return false;
  24. }
  25. }
  26. if (list.size() > 0) {
  27. return true;
  28. }
  29. }
  30. return false;
  31. }
  32. }

 

 

文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。

原文链接:chenyu.blog.csdn.net/article/details/68485900

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。