给定一个字符串数组 words 和一个字符串 chars. 如果一个字符串能被 chars 里面的字符组成,那么这个字符串就是"好"的(chars里面每个字符只能使用一次)。 求:words 里面所有好的字符串的字符总个数。 比如: words = ["cat", "bt", "hat", "tree"] chars = "atach" 好的字符串有 "cat", "hat", 3 + 3 = 6. 输出:6
时间: 2023-02-25 20:49:47 浏览: 88
计算字符串中字符个数
给定字符串数组 words 和字符串 chars,如果一个字符串在 chars 中可以找到对应的字符(每个字符只能使用一次),则该字符串是“好”的。要求:求出 words 中所有“好”字符串的字符总数。例如:words = ["cat", "bt", "hat", "tree"],chars = "atach",其中好的字符串有 "cat"、"hat",字符总数为 3 + 3 = 6,输出为 6。
阅读全文