Interview Guides
Given a list of log tokens tokens and a list of required indicators required, return the shortest contiguous subarray of tokens that contains every token in required with at least the same frequency. If no such subarray exists, return an empty list. Inputs are lists of strings, and the output is a list of strings.
1 <= len(tokens) <= 10^51 <= len(required) <= 10^4tokens[i] and required[i] are non-empty strings