Subarray With Given Sum Problem Statement
Given an array ARR
of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exists, return the start and end indices (0-based index) of the subarray. If no such subarray is found, return [-1, -1].
Example:
Input:
T = 1
N = 4, S = 7
ARR = [1, 2, 3, 4]
Output:
[0, 2]
Explanation:
The subarray [1, 2, 3] has a sum equal to S (7).
Constraints:
1 <= T <= 10
1 <= N <= 10^5
-10^14 <= S <= 10^14
-10^9 <= ARR[i] <= 10^9
- Time Limit: 1 sec
Note: If multiple such subarrays exist, returning any one is sufficient.

AnswerBot
4mo
Given an array of integers and a target sum, find a contiguous subarray with the sum equal to the target.
Iterate through the array while keeping track of the current sum and start index.
Use a hashmap ...read more
Help your peers!
Add answer anonymously...
Persistent Systems Software Engineer interview questions & answers
A Software Engineer was asked 5mo agoQ. What is a virtual function?
A Software Engineer was asked 7mo agoQ. What recommendation systems have you worked on?
A Software Engineer was asked 7mo agoQ. Explain one data structure that you know.
Popular interview questions of Software Engineer
A Software Engineer was asked 5mo agoQ1. What is a virtual function?
A Software Engineer was asked 5mo agoQ2. What is the difference between an Interface and an abstract class?
A Software Engineer was asked 7mo agoQ3. Write a program that prints a star pattern.
Top HR questions asked in Persistent Systems Software Engineer
A Software Engineer was asked 5mo agoQ1. Please introduce yourself.
A Software Engineer was asked 8mo agoQ2. Which technology are you interested in working with?
A Software Engineer was asked 8mo agoQ3. Why this company?
>
Persistent Systems 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

