Given strings s and t, return the minimum window substring of s that contains all characters of t (including duplicates). If no such window exists, return "".
Example: For s = "ADOBECODEBANC" and t = "ABC", return "BANC".
##### ###### ##### ### # # ### # # ###### ## ## ## ## ## ## ## # # # # # ## ##### #### ##### # # # # # # # #### ## # ## ## ## ## # # # # # ## ## # ###### ## ### # ### # ######
##### ###### ##### ### # # ### # # ###### ## ## ## ## ## ## ## # # # # # ## ##### #### ##### # # # # # # # #### ## # ## ## ## ## # # # # # ## ## # ###### ## ### # ### # ######
Given strings s and t, return the minimum window substring of s that contains all characters of t (including duplicates). If no such window exists, return "".
Example: For s = "ADOBECODEBANC" and t = "ABC", return "BANC".