Given strings s1 and s2, return true if s2 contains a permutation of s1 as a contiguous substring. Input: '"s1", "s2"'.
Input: '"s1", "s2"'.
Output: Boolean — true or false.
Input: "ab", "eidbaooo"
Output: true
Explanation: 'ba' is a permutation of 'ab'.Input: "ab", "eidboaoo"
Output: false
Explanation: No permutation window.Input: "a", "a"
Output: true
Explanation: Exact match.1<=s1.length,s2.length<=10^4lowercase letters