Leetcode#76. Minimum Window Substring
Problem
Given two strings s
and t
of lengths m
and n
respectively, return the minimum window
substring
of
1 | s |
such that every character in
1 | t |
(including duplicates) is included in the window
. If there is no such substring, return
the empty string
1 | "" |
.
The testcases will be generated such that the answer is unique.
Example 1:
1 | Input: s = "ADOBECODEBANC", t = "ABC" |
Example 2:
1 | Input: s = "a", t = "a" |
Example 3:
1 | Input: s = "a", t = "aa" |
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?
Solve
目前沒有優化
runtime和別人有些差距
1 | class Solution: |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論