-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEquiLeader.py
57 lines (30 loc) · 1.16 KB
/
EquiLeader.py
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
# you can write to stdout for debugging purposes, e.g.
# print "this is a debug message"
def get_leader(A):
leader = A[0]
total = 1
for i in range(1, len(A)):
if leader != A[i]:
if total == 0:
leader = A[i]
else:
total -= 1
else:
total += 1
return leader
def solution(A):
# write your code in Python 2.7
equi_leaders = 0
if len(A) > 1:
global_leader = get_leader(A)
total_leaders = A.count(global_leader)
lhs_leaders = 0 # number of leaders on lhs
equi_leaders = 0
for i in range(len(A)-1):
lhs = i+1 # total elements on lhs
rhs = len(A) - lhs # total elements on rhs
if A[i] == global_leader:
lhs_leaders += 1
if lhs_leaders > lhs/2 and total_leaders-lhs_leaders > rhs/2:
equi_leaders += 1
return equi_leaders