1684. 统计一致字符串的数目
题目描述:
给你一个由不同字符组成的字符串 allowed
和一个字符串数组 words
。如果一个字符串的每一个字符都在 allowed
中,就称这个字符串是 一致字符串。
请你返回 words
数组中 一致字符串 的数目。
示例 1:
输入:allowed = "ab", words = ["ad","bd","aaab","baa","badab"]
输出:2
解释:字符串 "aaab" 和 "baa" 都是一致字符串,因为它们只包含字符 'a' 和 'b' 。
示例 2:
输入:allowed = "abc", words = ["a","b","c","ab","ac","bc","abc"]
输出:7
解释:所有字符串都是一致的。
示例 3:
输入:allowed = "cad", words = ["cc","acd","b","ba","bac","bad","ac","d"]
输出:4
解释:字符串 "cc","acd","ac" 和 "d" 是一致字符串。
提示:
1 <= words.length <= 104
1 <= allowed.length <= 26
1 <= words[i].length <= 10
allowed
中的字符 互不相同 。words[i]
和allowed
只包含小写英文字母。
解题分析及思路:
方法:哈希表
思路:
使用哈希表保存allowed字符串中每个字符,然后遍历words数组,判断每个字符串是否每个字符都在哈希表中,如果是则计数加一。
func countConsistentStrings(allowed string, words []string) int {
m := make(map[byte]bool)
for i := 0; i < len(allowed); i++ {
m[allowed[i]] = true
}
res := 0
for i := 0; i < len(words); i++ {
var flag = true
for j := 0; j < len(words[i]); j++ {
flag = flag && m[words[i][j]]
}
if flag {
res++
}
}
return res
}
复杂度:
- 时间复杂度:O(n * m)
- 空间复杂度:O(1)
执行结果:
- 执行耗时:43 ms,击败了13.04% 的Go用户
- 内存消耗:6.7 MB,击败了13.04% 的Go用户