
Asked in Persistent Systems
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...
Top Software Engineer Interview Questions Asked at Persistent Systems
Q. Given a sentence, find the frequency of each word.
Q. What do you mean by cloud computing?
Q. What is a closure? Explain in detail with an example.
Interview Questions Asked to Software Engineer at Other Companies
Top Skill-Based Questions for Persistent Systems Software Engineer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 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

