567. Permutation in String
Medium
Input: s1 = "ab", s2 = "eidbaooo"
Output: true
Explanation: s2 contains one permutation of s1 ("ba").Input: s1 = "ab", s2 = "eidboaoo"
Output: falseLast updated
Input: s1 = "ab", s2 = "eidbaooo"
Output: true
Explanation: s2 contains one permutation of s1 ("ba").Input: s1 = "ab", s2 = "eidboaoo"
Output: falseLast updated