383. Determine if a string can contain another string Ransom Note

Source: Internet
Author: User

Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that Would return true if the ransom note can be constructed from the magazines; Otherwise, it'll return false.

The magazine string can is used once in your ransom note.

Note:
You may assume this both strings contain only lowercase letters.

Canconstruct ("A", "B")-Falsecanconstruct ("AA", "AB"), falsecanconstruct ("AA", "AaB"), True
  
 
  1. static bool canconstruct ( string ransomnote string magazine ) {
  2. Dictionary<char, int> d = new Dictionary<char, int>();
  3. char[] mArr = magazine.ToCharArray();
  4. int mArrLength = mArr.Length;
  5. for (int i = 0; i < mArrLength; i++) {
  6. char c = mArr[i];
  7. int v = 0;
  8. if (d.TryGetValue(c, out v)) {
  9. d[c] = v + 1;
  10. } else {
  11. d.Add(c, 1);
  12. }
  13. }
  14. char[] rArr = ransomNote.ToCharArray();
  15. int rArrLength = rArr.Length;
  16. for (int i = 0; i < rArrLength; i++) {
  17. char c = rArr[i];
  18. int v = 0;
  19. if (!d.TryGetValue(c, out v) || v == 0) {
  20. return false;
  21. } else {
  22. d[c] -= 1;
  23. }
  24. }
  25. return true;
  26. }



From for notes (Wiz)

383. Determine if a string can contain another string Ransom Note

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.