当前位置:   article > 正文

LeetCode-Python-1160. 拼写单词_有一个字符串数组 words 和一个字符串 chars. 假如可以用 chars 中的字母拼写出 w

有一个字符串数组 words 和一个字符串 chars. 假如可以用 chars 中的字母拼写出 w

给你一份『词汇表』(字符串数组) words 和一张『字母表』(字符串) chars

假如你可以用 chars 中的『字母』(字符)拼写出 words 中的某个『单词』(字符串),那么我们就认为你掌握了这个单词。

注意:每次拼写时,chars 中的每个字母都只能用一次。

返回词汇表 words 中你掌握的所有单词的 长度之和

 

示例 1:

  1. 输入:words = ["cat","bt","hat","tree"], chars = "atach"
  2. 输出:6
  3. 解释:
  4. 可以形成字符串 "cat" 和 "hat",所以答案是 3 + 3 = 6。

示例 2:

  1. 输入:words = ["hello","world","leetcode"], chars = "welldonehoneyr"
  2. 输出:10
  3. 解释:
  4. 可以形成字符串 "hello" 和 "world",所以答案是 5 + 5 = 10。

 

提示:

  1. 1 <= words.length <= 1000
  2. 1 <= words[i].length, chars.length <= 100
  3. 所有字符串中都仅包含小写英文字母

思路:

比较简单,只要判断words里有多少个元素可以由chars的字母组成即可。

因此只需用Counter统计出words里每个word字母出现的频率,和chars每个字母出现的频率,

然后比较即可。

  1. from collections import Counter
  2. class Solution(object):
  3. def countCharacters(self, words, chars):
  4. """
  5. :type words: List[str]
  6. :type chars: str
  7. :rtype: int
  8. """
  9. dic2 = Counter(chars)
  10. res = 0
  11. for i, word in enumerate(words):
  12. if self.helper(Counter(word), dic2):
  13. res += len(word)
  14. return res
  15. def helper(self, dic1, dic2):
  16. for key, val in dic1.items():
  17. if key not in dic2 or val > dic2[key]:
  18. return False
  19. return True

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/735305
推荐阅读
相关标签
  

闽ICP备14008679号