[PROBLEM] 76.Minimum Window Substring #212
Labels
dificulty: hard
Hard difficulty problem.
hacktoberfest
Hacktoberfest issue.
problem
LeetCode problem.
Difficulty
Hard
Problem Description
Given two strings
s
andt
of lengthsm
andn
respectively, return the minimum windowsubstring of
s
such that every character int
(including duplicates) is included in the window. If there is no such substring, return the empty string""
.The testcases will be generated such that the answer is unique.
Example 1:
Example 2:
Example 3:
Constraints:
m == s.length
n == t.length
1 <= m, n <= 105
s
andt
consist of uppercase and lowercase English letters.Follow up: Could you find an algorithm that runs in O(m + n) time?
Link
https://leetcode.com/problems/minimum-window-substring/
The text was updated successfully, but these errors were encountered: