kaustubhgupta / Hacktoberfest

This is for the information that the repository has been excluded by the Hacktoberfest team from the event. This was done to maintain the quality standards and promote good quality open source contributions.
MIT License
55 stars 277 forks source link

Minimum Window Substring #657

Closed divya-rai-42 closed 3 years ago

divya-rai-42 commented 3 years ago

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:

divya-rai-42 commented 3 years ago

@kaustubhgupta Sir, I would like to contribute to this in C++. Please assign this to me.