← AlgoMindset 75

Merge Strings Alternately

Easy🎙 Interview me on this

🧠 Before you code — what pattern fits?

You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string.

Return the merged string.

merge("abc","pqr") → "apbqcr"

merge("ab","pqrs") → "apbqrs"

🎬 Video explanation · NeetCodeIO

Your solution runs against 3 unit tests, including edge and large-value cases.

Loading...

Test console · 3 unit tests

Submit your code to run it against all 3 unit tests. Results appear here.

JavaScript, TypeScript & Python run sandboxed in your browser; other languages run on the execution server. Your code is saved locally as you type.