Created
September 15, 2014 12:11
-
-
Save danstn/0eb77248dfd97a084311 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
O(n)
).O(n)
)right
value by the value of the current elementWe get a linear total complexity of:
O(n) + O(n) => O(n)
.