Closed divya-rai-42 closed 3 years ago
Given two strings s and t, return the minimum window substring of s such that every character in t (including duplicates) is included in the window.
Example: s="adobecodebanc" t="abc" Output: "banc" The minimum length of the substring of s that includes all the characters of t is "banc"
@kaustubhgupta Sir, I would like to contribute to this in C++. Please assign this to me.
Description
Given two strings s and t, return the minimum window substring of s such that every character in t (including duplicates) is included in the window.
Example: s="adobecodebanc" t="abc" Output: "banc" The minimum length of the substring of s that includes all the characters of t is "banc"
Important Checklist
Languages and Assignees: