Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,056 questions

40,779 answers

573 users

How to find the equilibrium index of a list (sum lst[0 to index - 1] == sum lst[index + 1 to size]) in Python

Learn & Practice SQL


34 views
asked Apr 26, 2023 by avibootz
edited Apr 26, 2023 by avibootz

1 Answer

0 votes
def getEquilibriumIndex(lst) :
    sum_arr = 0
    left_part_sum = 0
    size = len(lst)
    
    i = 0
    while (i < size) :
        sum_arr += lst[i]
        i += 1
    
    i = 0
    while (i < size) :
        sum_arr -= lst[i]
        if (left_part_sum == sum_arr) :
            return i
        left_part_sum += lst[i]
        i += 1
    
    return -1


lst = [-9, 2, 5, 8, -7, 4, 1]

print("equilibrium index = " + str(getEquilibriumIndex(lst)), end ="")




'''
run:

equilibrium index = 3

'''

 





answered Apr 26, 2023 by avibootz
edited Apr 26, 2023 by avibootz
...