Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Find all Anagrams in a String #121

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions 0438-Find-All-Anagrams-in-a-String.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
'''
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.

Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100.

The order of output does not matter.

Example 1:

Input:
s: "cbaebabacd" p: "abc"

Output:
[0, 6]

Explanation:
The substring with start index = 0 is "cba", which is an anagram of "abc".
The substring with start index = 6 is "bac", which is an anagram of "abc".

Example 2:

Input:
s: "abab" p: "ab"

Output:
[0, 1, 2]

Explanation:
The substring with start index = 0 is "ab", which is an anagram of "ab".
The substring with start index = 1 is "ba", which is an anagram of "ab".
The substring with start index = 2 is "ab", which is an anagram of "ab".
'''
class Solution:
def findAnagrams(self, s: str, p: str) -> List[int]:

if len(s) < len(p) or not s or not p:
return []

need = collections.Counter(p)
res = []
l, r, missing = 0, 0, len(p)

while r < len(s):
if need[s[r]] > 0:
missing -= 1
need[s[r]] -= 1

if not missing:
res.append(l)

if r - l == len(p)-1:
need[s[l]] += 1
if need[s[l]] > 0:
missing += 1
l += 1

r += 1

return res