Your question is Minimum Window Substring Match. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given two strings s and t, return the shortest substring of s that contains every character in t, including duplicates. If no such substring exists, return an empty string. The input is two strings, and the output is a string.
def min_window(s, t):