Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
String Manipulation Coding
00:00
5 left

String Manipulation Coding

HardPython

Problem

The Wellmark member portal receives searchable text and required benefit-code patterns. Given a source string s and a target string t, return the shortest contiguous substring of s that contains every character in t, including repeated characters. If no such substring exists, return an empty string.

Character matching is case-sensitive, and the result should be the leftmost shortest window when multiple windows have the same length.

Formal Specification

Implement min_window(s, t).

  • Input: two strings, s and t.
  • Output: a string containing all characters from t with the required multiplicities.
  • Return "" when s does not contain all required characters.

Constraints

  • 1 <= len(t) <= len(s) <= 10^5
  • s and t contain printable ASCII characters
  • Repeated characters in t must be matched separately
  • Return the leftmost window when minimum windows have equal length

Function Signature

def min_window(s, t):
Interviewer

Your question is String Manipulation Coding. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.