String Path Compression

CodingStripeLast reported April 2026Low Frequency
Reported
1× across candidate reports
First seen
April 2026
Last reported
April 2026
Reported outcome
unknown

Problem Overview

Given a string with hierarchical delimiters — '/' separates major parts and '.' separates minor parts — compress each segment by keeping its first character, the count of middle characters, and its last character (e.g., 'abcd/erfgsh/google.com.abc' → 'a2d/e4h/g4e.c1m.a1c'). Part 1: Apply this compression independently to every minor-part segment (delimited by…

  • 2 candidate-reported follow-ups — the exact probes interviewers asked, with the trigger for each
  • The rest of the problem statement — full requirements, constraints, and edge cases
  • Approach and trade-offs — what passing candidates did, and the mistakes that sink people
Unlock the full Stripe catalog
Full problem statements, candidate-reported follow-ups, and walkthroughs — for every Stripe question.
Unlock with Pro
Already a member? Sign in
Verified Source
Every question is reconstructed from multiple independent candidate reports. Verbatim follow-ups, not invented ones.
Codex Fact-Checked
Technical claims, formulas, and scale numbers are reviewed against primary sources.
Interviewer Follow-ups
The exact follow-ups reported by candidates, with the trigger that prompts each one — plus the mistakes that sink people.
Is this helpful?