Equilibrium Index Problem Statement
Given an array Arr
consisting of N integers, your task is to find the equilibrium index of the array.
An index is considered as an equilibrium index if the sum of elements of the array to the left of that index is equal to the sum of elements to the right of it.
Input:
The first line contains an integer T, representing the number of test cases.
The first line of each test case contains an integer N, representing the size of the array.
The second line of each test case contains N space-separated integers representing the array elements.
Output:
The output for each test case should be a single integer indicating the equilibrium index of the array.
Example:
Input:
1
5
-7 1 5 2 -4
Output:
2
Explanation:
The index 2 is an equilibrium index because the sum of elements on its left (-7 + 1) equals the sum of elements on its right (2 - 4).
Constraints:
- 1 <= T <= 50
- 1 <= N <= 10^5
- -10^4 <= Arr[i] <= 10^4
Note:
- The array uses 0-based indexing, so return the 0-based index of the equilibrium.
- The element at the equilibrium index is not considered in the sum for either side.
- If multiple indices meet the condition, return the left-most one.
- If no such index is present, return -1.

AnswerBot
4mo
Find the equilibrium index of an array where sum of elements on left equals sum on right.
Iterate through the array and calculate prefix sum and suffix sum at each index.
Compare prefix sum and suffix s...read more
Help your peers!
Add answer anonymously...
Capgemini Data Analyst interview questions & answers
A Data Analyst was asked 6mo agoQ. How do you use field parameters in dynamic reporting?
A Data Analyst was asked 8mo agoQ. Define join and its types.
A Data Analyst was asked Q. How is Java platform independent?
Popular interview questions of Data Analyst
A Data Analyst was asked 6mo agoQ1. How do you use field parameters in dynamic reporting?
A Data Analyst was asked Q2. How is Java platform independent?
A Data Analyst was asked 12mo agoQ3. What is Primary key and foreign key?
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

