Permutation In String Problem Statement

Given two strings, str1 and str2, determine whether str2 contains any permutation of str1 as a substring.

Input:

str1 = “ab”
str2 = “aoba”

Output:

True

Example:

Explanation: Permutations of str1 = “ab” are [“ab”, “ba”]. Substrings of str2 = “aoba” are [“a”, “o”, “b”, “a”, “ao”, “ob”, “ba”, “aob”, “oba”, “aoba”]. The string “ba” is present, hence the output is True.

Constraints:

  • 1 <= T <= 10
  • 1 <= N <= 10^4
  • 1 <= M <= 10^4
  • Strings str1 and str2 consist only of lowercase letters.
Note:
You do not need to print anything, as it is managed internally. Just implement the given function to solve the problem.
AnswerBot
4mo

Check if a string contains any permutation of another string as a substring.

  • Iterate through str2 with a sliding window of length str1, check if any permutation of str1 is present.

  • Use a hashmap to stor...read more

Help your peers!
Select
Add answer anonymously...
PeopleStrong Full Stack Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits