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.
# Complete this function
positive = sum(x > 0 for x in arr) / len(arr)
negative = sum(x < 0 for x in arr) / len(arr)
zero = sum(x == 0 for x in arr) / len(arr)
print('%.6f' % positive,'%.6f' % negative, '%.6f' % zero, sep="\n")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Plus Minus
You are viewing a single comment's thread. Return to all comments →
def plusMinus(arr):