2025-01-09 20:29:41 +08:00
< p > Given two strings < code > s1< / code > and < code > s2< / code > , return < code > true< / code > if < code > s2< / code > contains a < span data-keyword = "permutation-string" > permutation< / span > of < code > s1< / code > , or < code > false< / code > otherwise.< / p >
2022-03-27 20:46:41 +08:00
< p > In other words, return < code > true< / code > if one of < code > s1< / code > ' s permutations is the substring of < code > s2< / code > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:46:41 +08:00
< pre >
< strong > Input:< / strong > s1 = " ab" , s2 = " eidbaooo"
< strong > Output:< / strong > true
< strong > Explanation:< / strong > s2 contains one permutation of s1 (" ba" ).
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:46:41 +08:00
< pre >
< strong > Input:< / strong > s1 = " ab" , s2 = " eidboaoo"
< strong > Output:< / strong > false
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = s1.length, s2.length < = 10< sup > 4< / sup > < / code > < / li >
< li > < code > s1< / code > and < code > s2< / code > consist of lowercase English letters.< / li >
< / ul >