LeetCode 567. Permutation in String
2020-05-18 18:25:12
# leetcode
Problem
LeetCode 567. Permutation in String
1. 题目简述
给出两个字符串s1和s2,判断s2中是否含有s1所有字母的一组排列。例如:
Input: s1 = "ab" s2 = "eidbaooo"
Output: True
Explanation: s2 contains one permutation of s1 ("ba").
2. 算法思路
sliding window
这道题和LeetCode-438基本一致,算法也一模一样,只是返回的内容不同,这道题还性对简单点,同样是使用两个数组来记录字母个数,每次滑动窗口时判断是否和目标字母一致。
3. 解法
- 双数组
1 |
|