Hard
Given two strings s
and t
of lengths m
and n
respectively, return the minimum window substring of s
such that every character in t
(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.
A substring is a contiguous sequence of characters within the string.
Example 1:
Input: s = “ADOBECODEBANC”, t = “ABC”
Output: “BANC”
Explanation: The minimum window substring “BANC” includes ‘A’, ‘B’, and ‘C’ from string t.
Example 2:
Input: s = “a”, t = “a”
Output: “a”
Explanation: The entire string s is the minimum window.
Example 3:
Input: s = “a”, t = “aa”
Output: “”
Explanation: Both ‘a’s from t must be included in the window. Since the largest window of s only has one ‘a’, return empty string.
Constraints:
m == s.length
n == t.length
1 <= m, n <= 105
s
and t
consist of uppercase and lowercase English letters.Follow up: Could you find an algorithm that runs in O(m + n)
time?
To solve the “Minimum Window Substring” problem in Swift with the Solution class, follow these steps:
minWindow
in the Solution
class that takes two strings s
and t
as input and returns the minimum window substring of s
containing all characters from t
.tFreqMap
to store the frequency of characters in string t
, and sFreqMap
to store the frequency of characters in the current window of string s
.left
and right
to track the window boundaries. Initialize a variable minLength
to store the minimum window length found so far.s
using the right
pointer until the end of the string:
sFreqMap
for the character at index right
.t
. If it does, move the left
pointer to minimize the window while maintaining the condition.minLength
if the current window length is smaller.right
pointer to expand the window.Here’s the implementation of the minWindow
method in Swift:
class Solution {
func minWindow(_ s: String, _ t: String) -> String {
let sChars = Array(s)
let tChars = Array(t)
var tCount = [Character: Int]()
// Store the count of each character in t
for char in tChars {
tCount[char, default: 0] += 1
}
var windowStart = 0
var windowEnd = 0
var minWindowSize = Int.max
var minWindowStart = 0
var count = tChars.count
while windowEnd < sChars.count {
let charEnd = sChars[windowEnd]
// If the character at windowEnd is in t, decrease the count
if let charCount = tCount[charEnd] {
if charCount > 0 {
count -= 1
}
tCount[charEnd] = charCount - 1
}
// Move windowStart to the right until all characters in t are included
while count == 0 {
let currentWindowSize = windowEnd - windowStart + 1
// Update the minimum window size and start position if necessary
if currentWindowSize < minWindowSize {
minWindowSize = currentWindowSize
minWindowStart = windowStart
}
let charStart = sChars[windowStart]
// If the character at windowStart is in t, increase the count
if let charCount = tCount[charStart] {
if charCount == 0 {
count += 1
}
tCount[charStart] = charCount + 1
}
windowStart += 1
}
windowEnd += 1
}
// Return the minimum window substring or an empty string if not found
if minWindowSize == Int.max {
return ""
} else {
let minWindowEnd = minWindowStart + minWindowSize
return String(sChars[minWindowStart..<minWindowEnd])
}
}
}
This implementation finds the minimum window substring in O(m + n)
time complexity, where m
is the length of string s
and n
is the length of string t
. It uses two frequency maps to keep track of character frequencies and adjusts the window boundaries to find the minimum window containing all characters from t
.