Merge Two Sorted Arrays Problem Statement
Given two sorted integer arrays ARR1
and ARR2
of size M and N, respectively, merge them into ARR1
as one sorted array. Assume that ARR1
has a size of M + N to hold all elements of ARR2
.
Input:
The first line contains an integer T representing the number of test cases. Each test case contains:
- Two space-separated integers M and N.
- A line with M integers followed by N zeros in ARR1.
- A line with N integers in ARR2.
Output:
For each test case, return the merged ARR1
as one sorted array.
Example:
Input:
ARR1 = [3, 6, 9, 0, 0]
ARR2 = [4, 10]
Output:
ARR1 = [3, 4, 6, 9, 10]
Constraints:
- 1 <= T <= 100
- 1 <= M, N <= 5000
- 1 <= ARR1[i], ARR2[i] <= 100000
Time Limit: 1 second
Note:
Ensure the function implementation handles the merging, output has already been managed.

AnswerBot
1y
The task is to merge two sorted arrays into one sorted array.
Create a new array with size M + N to store the merged array
Use two pointers to iterate through the elements of ARR1 and ARR2
Compare the el...read more
Help your peers!
Add answer anonymously...
Publicis Sapient Associate Software Engineer interview questions & answers
An Associate Software Engineer was asked Q. Where are the job locations of Publicis Sapient in India?
An Associate Software Engineer was asked Q. What is Event loop? What is higher order components?
An Associate Software Engineer was asked Q. Height of a Binary Tree You are provided with an arbitrary binary tree consistin...read more
Popular interview questions of Associate Software Engineer
An Associate Software Engineer was asked Q1. Where are the job locations of Publicis Sapient in India?
An Associate Software Engineer was asked Q2. What is Event loop? What is higher order components?
An Associate Software Engineer was asked Q3. Height of a Binary Tree You are provided with an arbitrary binary tree consistin...read more
>
Publicis Sapient Associate Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

