We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#!/bin/python3importmathimportosimportrandomimportreimportsys# #Complete the 'balancedSums' function below.## The function is expected to return a STRING.# The function accepts INTEGER_ARRAY arr as parameter.#fortinrange(int(input())):n=int(input())a=[int(b)forbininput().split()]s=sum(a)count=0foriinrange(n):if2*count==s-a[i]:print("YES")breakcount+=a[i]else:print("NO")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Sherlock and Array
You are viewing a single comment's thread. Return to all comments →
Here is the solution in Py3