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
2mo

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 1mo agoQ. How would you rate your SQL skills?
A Data Analyst was asked 4mo agoQ. How do you use field parameters in dynamic reporting?
A Data Analyst was asked 12mo agoQ. What is encapsulation?

Popular interview questions of Data Analyst

A Data Analyst was asked 1mo agoQ1. How would you rate your SQL skills?
A Data Analyst was asked 4mo agoQ2. How do you use field parameters in dynamic reporting?
A Data Analyst was asked 12mo agoQ3. What is encapsulation?

Top HR questions asked in Capgemini Data Analyst

A Data Analyst was asked 4mo agoQ1. Can you tell me about yourself?
A Data Analyst was asked 4mo agoQ2. Why do you want to join us?
A Data Analyst was asked 03 Apr 2022Q3. What are your salary expectations?
Capgemini Data Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter