Medium
Given two strings s1 and s2, return true if s2 contains a permutation of s1 as a contiguous substring. (Here the first line is s1, the second is s2.)
Input: s1 = "ab", s2 = "eidbaooo" Output: true
Input: s1 = "ab", s2 = "eidboaoo" Output: false