The Wellmark member portal receives searchable text and required benefit-code patterns. Given a source string s and a target string t, return the shortest contiguous substring of s that contains every character in t, including repeated characters. If no such substring exists, return an empty string.
Character matching is case-sensitive, and the result should be the leftmost shortest window when multiple windows have the same length.
Implement min_window(s, t).
s and t.t with the required multiplicities."" when s does not contain all required characters.def min_window(s, t):