题目
来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/substring-with-concatenation-of-all-words
解题思路
因为words里面的word的长度都是一样的,考虑用滑动窗口。
先用哈希表存储words各个单词的出现次数 从左往右遍历一遍s字符串,窗口大小固定,查看当前窗口的字符字串是否符合条件即可。代码如下:
|
|
来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/substring-with-concatenation-of-all-words
因为words里面的word的长度都是一样的,考虑用滑动窗口。
先用哈希表存储words各个单词的出现次数 从左往右遍历一遍s字符串,窗口大小固定,查看当前窗口的字符字串是否符合条件即可。代码如下:
|
|