Pregunta de entrevista de Visible Alpha

Round 1: Find equilibrium index of array.

Respuesta de la entrevista

Anónimo

1 ene 2019

Note: equilibrium index of an array is index of an element in an array for which sum of all elements on left side equals to sum of all elements on right side of that index. Solved this in O(n) using left and right pointers for more details check online you can also solve it using recursion.