You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Leetcode description for the problem states:
m == s.length
n == t.length
1 <= m, n <= 10^5
Which means t == "" will never be True.
But what would make sense if m < n => return "", because then we cant find a minimum window substring.
0 commit comments