Skip to content

Instantly share code, notes, and snippets.

@danstn
Created September 15, 2014 12:11
Show Gist options
  • Save danstn/0eb77248dfd97a084311 to your computer and use it in GitHub Desktop.
Save danstn/0eb77248dfd97a084311 to your computer and use it in GitHub Desktop.
# An equilibrium index of a sequence is an index into the sequence
# such that the sum of elements at lower indices is equal to the
# sum of elements at higher indices.
def eq_indices(arr)
left, right = 0, arr.inject(0, :+)
result = []
arr.each_with_index do |el, i|
right -= el
result << i if right == left
left += el
end
result
end
@danstn
Copy link
Author

danstn commented Sep 15, 2014

  1. Sum up the elements of the array first (O(n)).
  2. Loop through the array (O(n))
    • reduce the right value by the value of the current element
    • check if prefix equals to suffix and add the index to the result set if that's the case
    • add current element's value to the value of the prefix

We get a linear total complexity of: O(n) + O(n) => O(n).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment