-
-
Notifications
You must be signed in to change notification settings - Fork 51.1k
Expand file tree
/
Copy pathequilibrium_index_in_array.py
More file actions
66 lines (54 loc) · 1.54 KB
/
Copy pathequilibrium_index_in_array.py
File metadata and controls
66 lines (54 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
Find the Equilibrium Index of an Array.
Reference:
https://www.geeksforgeeks.org/equilibrium-index-of-an-array
Python doctest can be run with:
python -m doctest -v equilibrium_index_in_array.py
Given an array arr of size n, return an equilibrium index
if one exists; otherwise return -1.
An equilibrium index is an index where the sum of all
elements to the left equals the sum of all elements
to the right.
"""
def equilibrium_index(arr: list[int]) -> int:
"""
Find the first equilibrium index of an array.
Args:
arr: The input array of integers.
Returns:
The first equilibrium index, or -1 if none exists.
Examples:
>>> equilibrium_index([])
-1
>>> equilibrium_index([5])
0
>>> equilibrium_index([-7, 1, 5, 2, -4, 3, 0])
3
>>> equilibrium_index([2, 4, 6, 8, 10, 3])
-1
>>> equilibrium_index([1, 2, 3, 4, 5])
-1
>>> equilibrium_index([1, 1, 1, 1, 1])
2
>>> equilibrium_index([0, 0, 0])
0
>>> equilibrium_index([-1, -1, -1])
1
>>> equilibrium_index([1, -1, 0])
2
Time Complexity:
O(n), where n is the length of the array.
Space Complexity:
O(1), using only constant extra space.
"""
total_sum = sum(arr)
left_sum = 0
for i, value in enumerate(arr):
total_sum -= value
if left_sum == total_sum:
return i
left_sum += value
return -1
if __name__ == "__main__":
import doctest
doctest.testmod()