Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
String Concatenation Program
00:00
5 left

String Concatenation Program

EasyPython

Problem

A ValueMomentum QA validation utility receives two message fragments that must be joined before reporting the final result. Write a function that concatenates the two input strings in their original order without adding, removing, or changing characters.

Formal Specification

Implement concat_strings(first, second).

  • Input: Two strings, first and second.
  • Output: One string equal to first followed immediately by second.
  • Preserve capitalization, punctuation, whitespace, and repeated characters exactly.
  • Do not insert an automatic separator such as a space or newline.

Constraints

  • 0 <= len(first), len(second) <= 10^5
  • Both inputs contain valid Python string characters
  • The combined output length is at most 2 * 10^5 characters
  • The inputs may be empty

Function Signature

def concat_strings(first, second):
Interviewer

Your question is String Concatenation Program. 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.