stripe | Software Engineer Intern | Interview Experience
Interview Date: Not specified
Result: Not specified
Difficulty: Not specified
Interview Process
The interview process consisted of multiple rounds, including technical and behavioral interviews. Each round lasted approximately 45 minutes.
Technical Questions
- String Replacement (String)
Given a string containing data where some parts are marked asnot verified. You need to replace all occurrences ofnot verifiedwith a providederror code.
Input:- A string of data containing
not verified. - An
error codestring.
Output: - The string after replacing all
not verifiedwith theerror code.
Example:
Input:
Data: “abc not verified def not verified ghi”
Error Code: “error123”
Output: “abc error123 def error123 ghi”
- A string of data containing
Tips & Insights
Practice string manipulation problems, as they are common in technical interviews. Familiarize yourself with common algorithms for string processing.